What does Going away 1006 error mean in Python Websocket?

1.5k Views Asked by At

I have established connection with the server and everything worked fine. After couple of days I noticed data is not being updated, checked the logs and saw this:

Message: 'Closed down' Arguments: (1006, 'Going away')

From the documentation:

        Completes the websocket by calling the `closed`
        method either using the received closing code
        and reason, or when none was received, using
        the special `1006` code.

What may cause the problem? I think it may be either lost internet connection or the server went down for a moment (the server is from a third party, not ours). However, those are my wild guesses and if anyone could give me some directions how to handle this error I will be very thankful. I would like, ideally, to wait some time if needed and connect again.

Thank you!

0

There are 0 best solutions below