Page 1 of 1

Under what conditions does socket.write raise OSError 32?

Posted: Sun Oct 17, 2021 3:21 pm
by spierepf
I am trying to use umqtt.simple library on the unix port of micropython and I get OSError: 32 when calling MQTTClient.ping().

The implementation of ping is just:

Code: Select all

    def ping(self):
        self.sock.write(b"\xc0\0")
What does that error indicate?