Skip to content

Commit 377cb18

Browse files
Delete not correct call of can_assign_src_to_sink
With that extra call of can_assign_src_to_sink some of the scatter tests failed. This check is redundant.
1 parent 7c98131 commit 377cb18

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

cwltool/workflow.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,6 @@ def match_types(sinktype, src, iid, inputobj, linkMerge, valueFrom):
7474
return True
7575
return False
7676
elif linkMerge:
77-
if not can_assign_src_to_sink(src.parameter["type"], sinktype, strict=True):
78-
return False
7977
if iid not in inputobj:
8078
inputobj[iid] = []
8179
if linkMerge == "merge_nested":

0 commit comments

Comments
 (0)