runnable 0.12.0__py3-none-any.whl → 0.12.1__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.
- runnable/entrypoints.py +2 -2
- runnable/extensions/executor/argo/implementation.py +1 -1
- {runnable-0.12.0.dist-info → runnable-0.12.1.dist-info}/METADATA +1 -1
- {runnable-0.12.0.dist-info → runnable-0.12.1.dist-info}/RECORD +7 -7
- {runnable-0.12.0.dist-info → runnable-0.12.1.dist-info}/LICENSE +0 -0
- {runnable-0.12.0.dist-info → runnable-0.12.1.dist-info}/WHEEL +0 -0
- {runnable-0.12.0.dist-info → runnable-0.12.1.dist-info}/entry_points.txt +0 -0
runnable/entrypoints.py
CHANGED
@@ -276,7 +276,7 @@ def execute_single_node(
|
|
276
276
|
## This step is where we save the log file
|
277
277
|
try:
|
278
278
|
executor.execute_node(node=node_to_execute, map_variable=map_variable_dict)
|
279
|
-
|
279
|
+
finally:
|
280
280
|
log_file_name = utils.make_log_file_name(
|
281
281
|
node=node_to_execute,
|
282
282
|
map_variable=map_variable_dict,
|
@@ -287,7 +287,7 @@ def execute_single_node(
|
|
287
287
|
run_context.catalog_handler.put(name=log_file_name, run_id=run_context.run_id)
|
288
288
|
os.remove(log_file_name)
|
289
289
|
|
290
|
-
executor.send_return_code(stage="execution")
|
290
|
+
# executor.send_return_code(stage="execution")
|
291
291
|
|
292
292
|
|
293
293
|
def execute_notebook(
|
@@ -303,7 +303,7 @@ class DagTemplate(BaseModel):
|
|
303
303
|
tasks: List[DagTaskTemplate] = Field(default=[], exclude=True)
|
304
304
|
inputs: Optional[List[Parameter]] = Field(default=None, serialization_alias="inputs")
|
305
305
|
parallelism: Optional[int] = None
|
306
|
-
fail_fast: bool = Field(default=
|
306
|
+
fail_fast: bool = Field(default=False, serialization_alias="failFast")
|
307
307
|
|
308
308
|
@field_validator("parallelism")
|
309
309
|
@classmethod
|
@@ -4,7 +4,7 @@ runnable/cli.py,sha256=RILUrEfzernuKD3dNdXPBkqN_1OgE5GosYRuInj0FVs,9618
|
|
4
4
|
runnable/context.py,sha256=QhiXJHRcEBfSKB1ijvL5yB9w44x0HCe7VEiwK1cUJ9U,1124
|
5
5
|
runnable/datastore.py,sha256=8aQZ15KAMdre7a7G61bNRmcTeJFzOdnx_9O9UP4JQc8,27910
|
6
6
|
runnable/defaults.py,sha256=MOX7I2S6yO4FphZaZREFQca94a20oO8uvzXLd6GLKQs,4703
|
7
|
-
runnable/entrypoints.py,sha256=
|
7
|
+
runnable/entrypoints.py,sha256=lNUAwt0C2Im7DAwxbT9bm8Ko9PUvtALIgxkOiC7vfVQ,17590
|
8
8
|
runnable/exceptions.py,sha256=6NIYoTAzdKyGQ9PvW1Hu7b80OS746395KiGDhM7ThH8,2526
|
9
9
|
runnable/executor.py,sha256=xfBighQ5t_vejohip000XfxLwsgechUE1ZMIJWrZbUA,14484
|
10
10
|
runnable/extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -16,7 +16,7 @@ runnable/extensions/catalog/k8s_pvc/implementation.py,sha256=oJDDI0APT7lrtjWmzYJ
|
|
16
16
|
runnable/extensions/catalog/k8s_pvc/integration.py,sha256=OfrHbNFN8sR-wsVa4os3ajmWJFSd5H4KOHGVAmjRZTQ,1850
|
17
17
|
runnable/extensions/executor/__init__.py,sha256=0385OpNSpjyA0GjXlLw7gZtqJFFOHGLmYHzWAGBzU98,26247
|
18
18
|
runnable/extensions/executor/argo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
19
|
-
runnable/extensions/executor/argo/implementation.py,sha256=
|
19
|
+
runnable/extensions/executor/argo/implementation.py,sha256=FE5jDtzv5nlsnOjN9k0VjtEFQQWAAFaSXVJlroi7q6I,43911
|
20
20
|
runnable/extensions/executor/argo/specification.yaml,sha256=wXQcm2gOQYqy-IOQIhucohS32ZrHKCfGA5zZ0RraPYc,1276
|
21
21
|
runnable/extensions/executor/k8s_job/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
22
22
|
runnable/extensions/executor/k8s_job/implementation_FF.py,sha256=1IfVG1GRcJcVFzQ-WhkJsmzdJuj51QMxXylY9UrWM0U,10259
|
@@ -57,8 +57,8 @@ runnable/sdk.py,sha256=pmxGO5HSrcEGYR_VmVk6ObfddFHo5slxiaDI6LuIdKM,27852
|
|
57
57
|
runnable/secrets.py,sha256=dakb7WRloWVo-KpQp6Vy4rwFdGi58BTlT4OifQY106I,2324
|
58
58
|
runnable/tasks.py,sha256=a5Fkvl58ku9JPo-qDDJahemD-6a7jJlXlBEowvmeKuc,21910
|
59
59
|
runnable/utils.py,sha256=fXOLoFZKYqh3wQgzA2V-VZOu-dSgLPGqCZIbMmsNzOw,20016
|
60
|
-
runnable-0.12.
|
61
|
-
runnable-0.12.
|
62
|
-
runnable-0.12.
|
63
|
-
runnable-0.12.
|
64
|
-
runnable-0.12.
|
60
|
+
runnable-0.12.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
61
|
+
runnable-0.12.1.dist-info/METADATA,sha256=Jd2f-FUoVHZQ2BhhfeREbc7VEqMTmYLHmPTIZELtowY,17020
|
62
|
+
runnable-0.12.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
63
|
+
runnable-0.12.1.dist-info/entry_points.txt,sha256=amb6ISqKBSIz47um8_6LKnYgpoZ4d_p6-O1-7uUb1cU,1447
|
64
|
+
runnable-0.12.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|