@@ -24,7 +24,7 @@ def test_when_update_handlers_exist_their_channel_names_are_reported_in_status()
2424 }
2525
2626 fake_producer = FakeProducer ()
27- status_reporter = StatusReporter (update_handlers , fake_producer , "status_topic" , "" , "version" , logger ) # type: ignore
27+ status_reporter = StatusReporter (update_handlers , fake_producer , "status_topic" , "" , "version" , logger , 4000 ) # type: ignore
2828 status_reporter .report_status ()
2929
3030 if fake_producer .published_payloads :
@@ -43,7 +43,7 @@ def test_when_no_update_handlers_exist_no_streams_are_present_in_reported_status
4343 update_handlers : Dict = {}
4444
4545 fake_producer = FakeProducer ()
46- status_reporter = StatusReporter (update_handlers , fake_producer , "status_topic" , "" , "version" , logger ) # type: ignore
46+ status_reporter = StatusReporter (update_handlers , fake_producer , "status_topic" , "" , "version" , logger , 4000 ) # type: ignore
4747 status_reporter .report_status ()
4848
4949 if fake_producer .published_payloads :
@@ -59,7 +59,7 @@ def test_status_message_contains_service_id():
5959 update_handlers : Dict = {}
6060
6161 fake_producer = FakeProducer ()
62- status_reporter = StatusReporter (update_handlers , fake_producer , "status_topic" , service_id , "version" , logger ) # type: ignore
62+ status_reporter = StatusReporter (update_handlers , fake_producer , "status_topic" , service_id , "version" , logger , 4000 ) # type: ignore
6363 status_reporter .report_status ()
6464
6565 if fake_producer .published_payloads :
0 commit comments