From 4f1f75918337d8b652bbb5441eeb30007e1b7053 Mon Sep 17 00:00:00 2001 From: Mark Kuhn Date: Fri, 16 Sep 2022 10:07:08 -0700 Subject: [PATCH] change metric value from none to 0 --- tests/canary/agent/canary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/canary/agent/canary.py b/tests/canary/agent/canary.py index 1f73090..704e6ee 100644 --- a/tests/canary/agent/canary.py +++ b/tests/canary/agent/canary.py @@ -31,7 +31,7 @@ async def app(init, last_run_duration, metrics): async def main(): init = True - duration = None + duration = 0 # wait for agent to start # TODO: this should not be needed if we're using a ring buffer to queue and re-try events await asyncio.sleep(10)