We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 926ce39 commit bbcd4a8Copy full SHA for bbcd4a8
hpc_provisioner/src/hpc_provisioner/cluster.py
@@ -84,6 +84,7 @@ def from_dynamo_dict(cluster_data: dict):
84
"""
85
for bool_value in BOOL_VALUES:
86
cluster_data[bool_value] = True if cluster_data[bool_value] == 1 else False
87
+ cluster_data["creation_time"] = int(cluster_data["creation_time"])
88
89
return Cluster.from_dict(cluster_data)
90
0 commit comments