Skip to content

Commit

Permalink
Restore exception handling for item accessibility problems.
Browse files Browse the repository at this point in the history
Shouldn't this fix galaxyproject#10309? This way the exception falls through the object collecting exceptions and reporting them back instead of short circuiting the workflow scheduling stuff.
  • Loading branch information
jmchilton committed Oct 20, 2020
1 parent 03485c6 commit a457c8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1654,7 +1654,7 @@ def handle_single_execution(self, trans, rerun_remap_job_id, execution_slice, hi
if len(rval) == 4:
execution_slice.datasets_to_persist = rval[2]
execution_slice.history = rval[3]
except (webob.exc.HTTPFound, exceptions.MessageException) as e:
except webob.exc.HTTPFound as e:
# if it's a webob redirect exception, pass it up the stack
raise e
except ToolInputsNotReadyException as e:
Expand Down

0 comments on commit a457c8c

Please sign in to comment.