You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
should be replaced with
if (espconn_send(client->pCon, dataBuffer, dataLen) != 0) {
// error sending, put it back into the queue again
if (QUEUE_Puts(&client->msgQueue, dataBuffer, dataLen) == -1) {
INFO("MQTT: Queue full\r\n");
}
}
and same in line 751
The text was updated successfully, but these errors were encountered:
esp_mqtt/mqtt/mqtt.c
Line 757 in 37cab7c
should be replaced with
if (espconn_send(client->pCon, dataBuffer, dataLen) != 0) {
// error sending, put it back into the queue again
if (QUEUE_Puts(&client->msgQueue, dataBuffer, dataLen) == -1) {
INFO("MQTT: Queue full\r\n");
}
}
and same in line 751
The text was updated successfully, but these errors were encountered: