Skip to content

Commit

Permalink
bugfix - mins_to_wait and async_upload variables are reversed
Browse files Browse the repository at this point in the history
  • Loading branch information
dustinbleile committed Jul 15, 2024
1 parent a8b3f02 commit 17482ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pori_python/ipr/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ def ipr_report(
if ipr_upload:
try:
logger.info(f"Uploading to IPR {ipr_conn.url}")
ipr_result = ipr_conn.upload_report(output, async_upload, mins_to_wait)
ipr_result = ipr_conn.upload_report(output, mins_to_wait, async_upload)
logger.info(ipr_result)
output.update(ipr_result)
except Exception as err:
Expand Down

0 comments on commit 17482ce

Please sign in to comment.