-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Centralize location of serialization/deserialization errors
When implementing user-definable serialization, we were still using our original forked HighThroughputExecutor. That executor relied on globus_compute_sdk.errors.SerializationError. At the same time, the serialization module relied on its own SerializationError. To avoid mixing their semantics up, I left them in place. Now that we've moved away from HighThroughputExecutor, we no longer need that differentiation, so for consistency's sake, this moves the ser/de errors into the SDK's common errors module. At the same time, introduce a base class to catch both serialization and deserialization errors, and ensure that all three error classes are also ComputeErrors.
- Loading branch information
1 parent
23a90f1
commit e6d040c
Showing
6 changed files
with
31 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters