We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 972e576 commit f5e6c37Copy full SHA for f5e6c37
test/integration/models/monitor/test_monitor.py
@@ -222,9 +222,9 @@ def test_integration_create_get_update_delete_alert_definition(
222
223
def wait_for_alert_ready(alert_id, service_type: str):
224
timeout = 360 # max time alert should take to create
225
- INITIAL_TIMEOUT = 1
+ initial_timeout = 1
226
start = time.time()
227
- interval = INITIAL_TIMEOUT
+ interval = initial_timeout
228
alert = client.load(AlertDefinition, alert_id, service_type)
229
while (
230
getattr(alert, "status", None) == "in progress"
0 commit comments