Skip to content

Commit

Permalink
feat: Store load test run
Browse files Browse the repository at this point in the history
Allows the monitor to wait until the run starts and share the run id with the load test script.
  • Loading branch information
bmtcril committed Mar 22, 2024
1 parent d1f5117 commit f1d35f9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def check_clickhouse_for_test(self) -> Union[str, None]:

try:
return response.json()["data"][0]
except KeyError:
except (KeyError, requests.exceptions.JSONDecodeError):
return

Check warning on line 82 in platform_plugin_aspects/management/commands/monitor_load_test_tracking.py

View check run for this annotation

Codecov / codecov/patch

platform_plugin_aspects/management/commands/monitor_load_test_tracking.py#L81-L82

Added lines #L81 - L82 were not covered by tests

def wait_for_start(self) -> None:
Expand Down

0 comments on commit f1d35f9

Please sign in to comment.