hotfix: bad mqtt connection address
This commit is contained in:
parent
03b1cb857e
commit
aa389d5c40
2 changed files with 2 additions and 2 deletions
|
@ -29,7 +29,7 @@ struct mg_connection*
|
|||
connection_mqtt_connect(struct mg_mgr *mgr)
|
||||
{
|
||||
char address[100];
|
||||
sprintf(address, "tcp://localhost:%u", global_config.mqtt_port);
|
||||
sprintf(address, "tcp://127.0.0.1:%u", global_config.mqtt_port);
|
||||
struct mg_connection *c = mg_connect(mgr, address, handler_mqtt);
|
||||
return c;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue