kres20

Results 8 comments of kres20

@Chaz6 @d-Rickyy-b I'm facing the same problem. I'm running certstream in the docker container on AWS ECS and python version is 3.9.5. I updated some packages, but still cannot resolve...

Thank you @Fitblip @d-Rickyy-b. Even though I updated to certstream 1.12, I still get the same error. It is much appreciated if someone can implement above (ws.send('.')).

@Fitblip @d-Rickyy-b I implemented ws.send in cli.py as following. ``` def _on_open(self, ws): certstream_logger.info("Connection established to CertStream! Listening for events...!") if self.on_open_handler: self.on_open_handler() t_ws_send = threading.Thread(target=self._ws_send, args=(ws,)) t_ws_send.start() def _ws_send(self,...

@Fitblip @d-Rickyy-b I would like to know whether this disconnection happens only in my environment or not. Do you have any success cases (environments) that don't make this data loss...

@katesaikishore Thank you for your advice. I have changed the python to python:3.8.12-buster, but it still has the error. ``` ubuntu@ip-10-0-0-241:~/work/certstream_documentdb$ docker run 8ed9a1d5f1f8 [INFO:certstream] 2021-09-06 05:48:17,937 - Connection established...

@katesaikishore Than you for your reply. We used the same versions of the libraries except for heroku (we have to use AWS), but it could not work well. I'll try...

@katesaikishore I've just created the environment in locally (in VM) without docker, but it still has the error. I even used Go version, but still get the same error. @Fitblip...

@katesaikishore @Fitblip I set up the certstream server too (https://github.com/CaliDog/certstream-server), and connect there like `certstream.listen_for_events(print_callback, url='ws://localhost:4000/')`, and it works fine without any errors. Therefore this above error is caused by...