Skip to content

Commit

Permalink
WX-1307 confirmed workflow submission erroring, moving print statemen…
Browse files Browse the repository at this point in the history
…ts for more debugging
  • Loading branch information
JVThomas committed Oct 6, 2023
1 parent 92b0f2a commit 5f8dd88
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,12 @@ def submit_workflow_to_cromwell(app_url, workflow_test_name):
'workflowType': 'WDL',
'workflowTypeVersion': '1.0'
}
response = requests.post(workflow_endpoint, headers=headers, files=files)
print('-----')
print(workflow_endpoint)
print('------')
print(headers)
print('------')
response = requests.post(workflow_endpoint, headers=headers, files=files)
handle_failed_request(response, f"Error submitting workflow to Cromwell for {workflow_test_name}", 201)
output_message(response.json())
return response.json()
Expand Down

0 comments on commit 5f8dd88

Please sign in to comment.