Skip to content

Commit d686fff

Browse files
authored
Update collector_certstream.py
The Calidog certstream lib changed and now needs an url=parameter
1 parent ce60fd4 commit d686fff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

intelmq/bots/collectors/calidog/collector_certstream.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def callback(self, message, context=None): # callback handler for certstream ev
3333
CertstreamCollectorBot.send_update(message=message, self=self)
3434

3535
def process(self):
36-
c = CertStreamClient(self.callback, skip_heartbeats=True, on_open=None, on_error=None)
36+
c = CertStreamClient(self.callback, skip_heartbeats=True, on_open=None, on_error=None, url='wss://certstream.calidog.io/')
3737
c.run_forever()
3838

3939
def send_update(self, message):

0 commit comments

Comments
 (0)