Disable MQTT connect error callback after successful connection (#2262)

Disable the error callback of mqtt.client:connect() after a successful connection.
This will prevent this function to be called after a future disconnection.
Instead the "offline" function is called.
This commit is contained in:
Frank Exoo 2018-02-13 09:25:20 +01:00 committed by Marcel Stör
parent 1a39a9f14a
commit e9ed1a8c59
1 changed files with 2 additions and 0 deletions

View File

@ -338,6 +338,8 @@ READPACKET:
mud->connState = MQTT_DATA;
NODE_DBG("MQTT: Connected\r\n");
mud->keepalive_sent = 0;
luaL_unref(L, LUA_REGISTRYINDEX, mud->cb_connect_fail_ref);
mud->cb_connect_fail_ref = LUA_NOREF;
if (mud->mqtt_state.auto_reconnect == RECONNECT_POSSIBLE) {
mud->mqtt_state.auto_reconnect = RECONNECT_ON;
}