domino-py-iisas 1.0.32__py3-none-any.whl → 1.0.34__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- domino/VERSION +1 -1
- domino/base_piece.py +9 -6
- {domino_py_iisas-1.0.32.dist-info → domino_py_iisas-1.0.34.dist-info}/METADATA +1 -1
- {domino_py_iisas-1.0.32.dist-info → domino_py_iisas-1.0.34.dist-info}/RECORD +8 -8
- {domino_py_iisas-1.0.32.dist-info → domino_py_iisas-1.0.34.dist-info}/WHEEL +0 -0
- {domino_py_iisas-1.0.32.dist-info → domino_py_iisas-1.0.34.dist-info}/entry_points.txt +0 -0
- {domino_py_iisas-1.0.32.dist-info → domino_py_iisas-1.0.34.dist-info}/licenses/LICENSE +0 -0
- {domino_py_iisas-1.0.32.dist-info → domino_py_iisas-1.0.34.dist-info}/top_level.txt +0 -0
domino/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.34
|
domino/base_piece.py
CHANGED
|
@@ -273,16 +273,19 @@ class BasePiece(metaclass=abc.ABCMeta):
|
|
|
273
273
|
# Generate paths
|
|
274
274
|
workflow_run_subpath = os.environ.get('DOMINO_WORKFLOW_RUN_SUBPATH', '')
|
|
275
275
|
self.workflow_shared_storage_path = Path("/home/shared_storage")
|
|
276
|
-
|
|
276
|
+
shared_storage_source_name = os.environ.get('DOMINO_WORKFLOW_SHARED_STORAGE_SOURCE_NAME', None)
|
|
277
|
+
self.logger.info("DOMINO_WORKFLOW_SHARED_STORAGE_SOURCE_NAME:")
|
|
278
|
+
self.logger.info(shared_storage_source_name)
|
|
279
|
+
if self.deploy_mode == 'local-compose' or shared_storage_source_name == 'local':
|
|
277
280
|
self.workflow_shared_storage_path = str(self.workflow_shared_storage_path / workflow_run_subpath)
|
|
278
281
|
self.results_path = f"{self.workflow_shared_storage_path}/{self.task_id}/results"
|
|
279
282
|
self.xcom_path = f"{self.workflow_shared_storage_path}/{self.task_id}/xcom"
|
|
280
283
|
self.report_path = f"{self.workflow_shared_storage_path}/{self.task_id}/report"
|
|
281
|
-
shared_storage_source_name
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
else:
|
|
285
|
-
|
|
284
|
+
#if not shared_storage_source_name or shared_storage_source_name == "none" or self.deploy_mode == "local-compose" or shared_storage_source_name == "local":
|
|
285
|
+
self.logger.info("GENERATE PATHS:")
|
|
286
|
+
self.generate_paths()
|
|
287
|
+
#else:
|
|
288
|
+
# self._wait_for_sidecar_paths()
|
|
286
289
|
|
|
287
290
|
# Using pydantic to validate input data
|
|
288
291
|
input_model_obj = piece_input_model(**piece_input_data)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: domino-py-iisas
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.34
|
|
4
4
|
Summary: Fork of the original Python package for Domino.
|
|
5
5
|
Author-email: Stefan Dlugolinsky <stefan.dlugolinsky@savba.sk>, Luiz Tauffer <luiz@taufferconsulting.com>, Vinicius Vaz <vinicius@taufferconsulting.com>
|
|
6
6
|
License:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
domino/VERSION,sha256=
|
|
1
|
+
domino/VERSION,sha256=mJ4ueOIAU4kPIVk-7wBh1bRdUbv79T_ii2ikOhgY0yQ,7
|
|
2
2
|
domino/__init__.py,sha256=I3dmIBqKnlYjo-VFCDdA_7YUqsNT-i9QtQqXnV9pW4U,233
|
|
3
|
-
domino/base_piece.py,sha256=
|
|
3
|
+
domino/base_piece.py,sha256=Xc9fye0O0Io9k8RYcbjeQPGb-_vDy67izR-1FAJWR7Y,17860
|
|
4
4
|
domino/logger.py,sha256=08Km3_NmgYH3HrxJjZJWGSmOv7dE5E5xvo9_ZnKut_o,889
|
|
5
5
|
domino/task.py,sha256=ezTkVE98cOABDfRCgHw3h83fmgTNLHRhYJhwYqsl_WI,6774
|
|
6
6
|
domino/actions/github_actions.py,sha256=sDXJYh4D93MiaWJq6BquARAInq5Zt887lXrPwceLwHE,2291
|
|
@@ -63,9 +63,9 @@ domino/utils/__init__.py,sha256=7CET-zz6y1EBuBJQLgF3rXNhKOSj32Z3X_3mKUAirII,231
|
|
|
63
63
|
domino/utils/metadata_default.py,sha256=4tbmWoVuoRMxd2c2vkwKYLkTTDf1I0OooXB_P5DGWXM,455
|
|
64
64
|
domino/utils/piece_generator.py,sha256=Yww5PwH-EDLqNrnWAinCgpG5-uQSVi_3UbMw4HZCE-E,514
|
|
65
65
|
domino/utils/workflow_shared_storage.py,sha256=USt_Q6nRGrtbcgrWHjtEvBDMSGSDd3BwUrZVe0RItH0,272
|
|
66
|
-
domino_py_iisas-1.0.
|
|
67
|
-
domino_py_iisas-1.0.
|
|
68
|
-
domino_py_iisas-1.0.
|
|
69
|
-
domino_py_iisas-1.0.
|
|
70
|
-
domino_py_iisas-1.0.
|
|
71
|
-
domino_py_iisas-1.0.
|
|
66
|
+
domino_py_iisas-1.0.34.dist-info/licenses/LICENSE,sha256=ZOzivsSTOmVUr23IVL-IMv2nDRhWBp4hVxwYTNe4fBc,11353
|
|
67
|
+
domino_py_iisas-1.0.34.dist-info/METADATA,sha256=F-k_U0IMOkhnBdEN2oYWGcL7TTSiim4UrRpxxN2V37U,17096
|
|
68
|
+
domino_py_iisas-1.0.34.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
69
|
+
domino_py_iisas-1.0.34.dist-info/entry_points.txt,sha256=EBX10akoWncqaYPjad7nTNFpge2bbooLSZJGPT-Ivzk,46
|
|
70
|
+
domino_py_iisas-1.0.34.dist-info/top_level.txt,sha256=Mo0jr96Ke1GnB5Qa_U9nSu_7yRSWsu5dvPJk8RFiwRw,7
|
|
71
|
+
domino_py_iisas-1.0.34.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|