We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 314d6f4 commit 05ec0eeCopy full SHA for 05ec0ee
metaflow/flowspec.py
@@ -28,6 +28,8 @@
28
29
from .datastore.inputs import Inputs
30
31
+INTERNAL_ARTIFACTS_SET = set(["_foreach_values"])
32
+
33
34
class InvalidNextException(MetaflowException):
35
headline = "Invalid self.next() transition detected"
@@ -446,7 +448,9 @@ def merge_artifacts(
446
448
available_vars = (
447
449
(var, sha)
450
for var, sha in inp._datastore.items()
- if (var not in exclude) and (not hasattr(self, var))
451
+ if (var not in exclude)
452
+ and (not hasattr(self, var))
453
+ and (var not in INTERNAL_ARTIFACTS_SET)
454
)
455
for var, sha in available_vars:
456
_, previous_sha = to_merge.setdefault(var, (inp, sha))
0 commit comments