Skip to content

Commit

Permalink
disable streaming for > operator if right hand is a node (Issue #21)
Browse files Browse the repository at this point in the history
  • Loading branch information
thasso committed Jan 20, 2014
1 parent ab1567d commit 1eae273
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jip/pipelines.py
Original file line number Diff line number Diff line change
Expand Up @@ -1692,7 +1692,7 @@ def __gt__(self, other):
def_in = other._tool.options.get_default_input()
log.debug("op node > :: %s->%s [%s<-%s]",
self, other, dout.name, def_in.name)
other.set(def_in.name, dout)
other.set(def_in.name, dout, allow_stream=False)
return other

# if the right hand side is an option, set
Expand Down

0 comments on commit 1eae273

Please sign in to comment.