Skip to content

Commit

Permalink
do not send default input connection to jobs without data mount
Browse files Browse the repository at this point in the history
  • Loading branch information
houqp committed Jul 12, 2018
1 parent 96c0c52 commit 5988e67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion floyd/model/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def __init__(self,
self.default_container = default_container
self.family_id = family_id
self.outputs = outputs if outputs else [{'name': 'output', 'type': 'dir'}]
self.inputs = inputs if inputs else [{'name': 'input', 'type': 'dir'}]
self.inputs = inputs if inputs else []
self.env = env
self.arch = arch
self.instance_type = instance_type
Expand Down

0 comments on commit 5988e67

Please sign in to comment.