From b5fa9d6f5fda52861ed9940916be7b274735e102 Mon Sep 17 00:00:00 2001 From: Daniel Lenski Date: Thu, 13 Jun 2024 11:29:40 -0700 Subject: [PATCH] Invoke on_error_handler as described in the docs According to the example in the README, the `on_error` handler should be called with two parameters, of which the first is the `CertStreamClient` instance: https://github.com/CaliDog/certstream-python/blob/97eb5b37e2c2077495e20d6df3459088a5262b48/README.md?plain=1#L61-L63 --- certstream/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certstream/core.py b/certstream/core.py index e119296..4f17d3b 100644 --- a/certstream/core.py +++ b/certstream/core.py @@ -44,7 +44,7 @@ def _on_error(self, _, ex): if type(ex) == KeyboardInterrupt: raise if self.on_error_handler: - self.on_error_handler(ex) + self.on_error_handler(self, ex) certstream_logger.error("Error connecting to CertStream - {} - Sleeping for a few seconds and trying again...".format(ex)) def listen_for_events(message_callback, url, skip_heartbeats=True, setup_logger=True, on_open=None, on_error=None, **kwargs):