Skip to content

Commit 38cff1c

Browse files
committed
bug fix
1 parent 166295e commit 38cff1c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

robusta_krr/core/runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ def _send_scan_payload(
556556
logger.debug(f"Missing required parameters: url={bool(url)}, scan_id={bool(scan_id)}, start_time={bool(start_time)}")
557557
return
558558

559-
logger.debug(f"Preparing to send scan payload. scan_id={scan_id}, to sink {named_sinks}, is_error={is_error}")
559+
logger.warning(f"Preparing to send scan payload. scan_id={scan_id}, to sink {named_sinks}, is_error={is_error}")
560560

561561
headers = {"Content-Type": "application/json"}
562562

robusta_krr/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ def run_strategy(
370370
Config.set_config(config)
371371
except ValidationError as e:
372372
logger.exception("Error occured while parsing arguments")
373-
publish_input_error( publish_scan_url, start_time, scan_id, str(e), named_sinks)
373+
publish_input_error( publish_scan_url, scan_id, start_time, str(e), named_sinks)
374374
else:
375375
runner = Runner()
376376
exit_code = asyncio.run(runner.run())

0 commit comments

Comments
 (0)