Skip to content

Commit

Permalink
looog
Browse files Browse the repository at this point in the history
  • Loading branch information
bernt-matthias committed Mar 24, 2022
1 parent faac061 commit 7bb6417
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/galaxy/tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1781,7 +1781,7 @@ def handle_input(self, trans, incoming, history=None, use_cached_job=False, inpu
to the form or execute the tool (only if 'execute' was clicked and
there were no errors).
"""
log.error("handle_input incoming {incoming}")
log.error(f"handle_input incoming {incoming}")
request_context = proxy_work_context_for_history(trans, history=history)
all_params, all_errors, rerun_remap_job_id, collection_info = self.expand_incoming(
trans=trans, incoming=incoming, request_context=request_context, input_format=input_format
Expand Down
4 changes: 2 additions & 2 deletions lib/galaxy/webapps/galaxy/api/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -647,10 +647,10 @@ def _create(self, trans: GalaxyWebTransaction, payload, **kwd):

# TODO: encode data ids and decode ids.
# TODO: handle dbkeys
log.error("_create inputs {inputs}")
log.error(f"_create inputs {inputs}")
params = util.Params(inputs, sanitize=False)
incoming = params.__dict__
log.error("_create inputs {incoming}")
log.error(f"_create inputs {incoming}")

# use_cached_job can be passed in via the top-level payload or among the tool inputs.
# I think it should be a top-level parameter, but because the selector is implemented
Expand Down

0 comments on commit 7bb6417

Please sign in to comment.