We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cb1679 commit 7e95eddCopy full SHA for 7e95edd
1 file changed
openwisp_controller/connection/tasks.py
@@ -76,7 +76,11 @@ def update_config(device_id):
76
try:
77
78
device_conn = DeviceConnection.get_working_connection(device)
79
- except NoWorkingDeviceConnectionError:
+ except NoWorkingDeviceConnectionError as e:
80
+ logger.warning(
81
+ f"update_config for device {device_id}: "
82
+ f"DeviceConnection.get_working_connection failed: {e}"
83
+ )
84
return
85
else:
86
logger.info(f"Updating {device} (pk: {device_id})")
0 commit comments