Skip to content

Commit

Permalink
fix k8s operator to allow old pieces without shared storage
Browse files Browse the repository at this point in the history
  • Loading branch information
vinicvaz committed Feb 20, 2024
1 parent a357276 commit b54c0a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/domino/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.0
0.9.1
2 changes: 1 addition & 1 deletion src/domino/custom_operators/k8s_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ def execute(self, context: Context):
ti.xcom_push(key='pod_name', value=self.pod.metadata.name)
ti.xcom_push(key='pod_namespace', value=self.pod.metadata.namespace)
if self.do_xcom_push:
self._shared_storage_usage_in_bytes = result['_shared_storage_usage_in_bytes']
self._shared_storage_usage_in_bytes = result.get('_shared_storage_usage_in_bytes', None)
return result


Expand Down

0 comments on commit b54c0a9

Please sign in to comment.