We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c695e2 commit 393b0beCopy full SHA for 393b0be
1 file changed
test/test_utils.py
@@ -250,8 +250,13 @@ def test_pingalive_run_and_stop(self):
250
ping_alive.run()
251
ping_alive.stop()
252
253
- ping_alive.logger.info.assert_any_call("Starting PingAlive thread")
254
- ping_alive.logger.info.assert_any_call("Preparing PingAlive for clean shutdown")
+ ping_alive.logger.info.assert_any_call(
+ "Starting PingAlive thread", {"tenant_id": str(ping_alive.tenant_id)}
255
+ )
256
257
+ "Preparing PingAlive for clean shutdown",
258
+ {"tenant_id": str(ping_alive.tenant_id)},
259
260
self.assertTrue(ping_alive.exit_event.is_set())
261
262
0 commit comments