Skip to content

Commit

Permalink
Merge pull request #123 from exalearn/proxy-serialization-fix
Browse files Browse the repository at this point in the history
Fix proxy deserialization bug from #120
  • Loading branch information
gpauloski authored Feb 21, 2024
2 parents 5cf49b0 + 5a773a3 commit 3f9508f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion colmena/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def _serialized_bytes_to_obj_wrapper(
else:
raise NotImplementedError(f'Method {method} not yet implemented')

return SerializationMethod.serialize(method, s)
return SerializationMethod.deserialize(method, s)


class FailureInformation(BaseModel):
Expand Down

0 comments on commit 3f9508f

Please sign in to comment.