workflow_manager 0.2.9 → 0.3.0
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.
- data/lib/workflow_manager/server.rb +1 -0
- data/lib/workflow_manager/version.rb +1 -1
- metadata +1 -1
@@ -214,6 +214,7 @@ module WorkflowManager
|
|
214
214
|
waiting_max = 60*60*8 # 8h
|
215
215
|
# wait until the files come
|
216
216
|
until waiting_time > waiting_max or
|
217
|
+
File.exist?(input_dataset_path) and
|
217
218
|
file_list = input_dataset_file_list(input_dataset_path) and
|
218
219
|
file_list.map!{|file| File.join(gstore_dir, file)} and
|
219
220
|
go_submit = input_dataset_exist?(file_list)
|