Closed

Description
Hi,
I've been using quite a while this library but after few git pull updates, it stopped working and I'm getting the follow message:
E (151464) MQTT_CLIENT: Error write data or timeout, written len = -1
E (151464) MQTT_CLIENT: Error to public data to topic=/data/0001/, qos=0
E (151474) MQTT_CLIENT: Error write data or timeout, written len = -1
E (151474) MQTT_CLIENT: Error to public data to topic=/data/0001/, qos=0
E (151494) MQTT_CLIENT: Error write data or timeout, written len = -1
E (151494) MQTT_CLIENT: Error to public data to topic=/data/0001/, qos=0
The client connects successfully to MQTT Server:
D (16414) MQTT_CLIENT: MQTT client_id=teste
D (16414) TRANS_TCP: [sock=54],connecting to server IP:192.168.1.92,Port:1883...
D (16784) MQTT_CLIENT: Transport connected to mqtt://192.168.1.92:1883
I (16794) MQTT_CLIENT: Sending MQTT CONNECT message, type: 1, id: 0000
D (16804) MQTT_CLIENT: Connected
I (16804) MY_LOGGER: MQTT_EVENT_CONNECTED
I've tried with qos=0,1 and 2 and the same error happens (output differ a little bit 'cause 0 we don't enqueue the message).
I'm using username and password, at port 1883, disable_clean_session=true.
Using mosquitto_pub I can easily publish messages:
mosquitto_pub -h <host> -u <username> -P <password> -t '/data/0001/' -m "{}"
The same credentials and configs are used for mqtt_client (esp32) and mosquitto_pub.
What can I do to try to figure out what's happening?
Thanks in advance.