Skip to content

Commit

Permalink
version
Browse files Browse the repository at this point in the history
  • Loading branch information
Amit Jaiswal committed Aug 2, 2024
1 parent 04d0a3f commit 9cf447d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python-packages/hydra/src/omigo_hydra/cluster_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ def from_json(json_obj):

value = json_obj["value"]
try:
func = dill.loads(base64.b64decode(value.encode("ascii")))
func = dill.loads(base64.b64decode(value.encode("ascii"))) #nosec
return ClusterFuncLambda(func)
except Exception as e:
utils.info("ClusterFuncLambda: from_json: exception in deserializing json: {}".format(json.dumps(json_obj)))
Expand Down

0 comments on commit 9cf447d

Please sign in to comment.