mirror of
https://github.com/espressif/esp-nimble.git
synced 2026-09-20 07:57:22 +00:00
mesh: Silence proxy not connected log
When performing node reset over a proxy connection, the disconnection is asynchronous, and will finish after the reset callback goes to the application. If the application restarts provisioning in this callback, the disconnected-event is triggered after PB GATT is reactivated, and this error is printed without any faults actually occurring. this is port of 82d941069885f7654295c8f5e4bd41cfe72bb131
This commit is contained in:
committed by
Łukasz Rymanowski
parent
14f7dd9182
commit
eaa36c971e
@@ -104,7 +104,7 @@ int bt_mesh_pb_gatt_close(uint16_t conn_handle)
|
||||
BT_DBG("conn %p", conn_handle);
|
||||
|
||||
if (link.conn_handle != conn_handle) {
|
||||
BT_ERR("Not connected");
|
||||
BT_DBG("Not connected");
|
||||
return -ENOTCONN;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user