mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-01-26 15:21:41 +01:00
[somfytahoma] Fix code analysis warnings (#10466)
Signed-off-by: Laurent Garnier <lg.hc@free.fr>
This commit is contained in:
parent
6e44b1ca15
commit
782fe0eb8f
@ -252,20 +252,20 @@ public class SomfyTahomaBridgeHandler extends BaseBridgeHandler {
|
|||||||
} catch (JsonSyntaxException e) {
|
} catch (JsonSyntaxException e) {
|
||||||
logger.debug("Received invalid data (login)", e);
|
logger.debug("Received invalid data (login)", e);
|
||||||
updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.COMMUNICATION_ERROR, "Received invalid data (login)");
|
updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.COMMUNICATION_ERROR, "Received invalid data (login)");
|
||||||
} catch (InterruptedException | ExecutionException | TimeoutException e) {
|
} catch (ExecutionException e) {
|
||||||
if (e instanceof ExecutionException) {
|
if (isAuthenticationChallenge(e)) {
|
||||||
if (isAuthenticationChallenge(e)) {
|
updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.COMMUNICATION_ERROR, "Authentication challenge");
|
||||||
updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.COMMUNICATION_ERROR,
|
setTooManyRequests();
|
||||||
"Authentication challenge");
|
} else {
|
||||||
setTooManyRequests();
|
logger.debug("Cannot get login cookie", e);
|
||||||
return;
|
updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.COMMUNICATION_ERROR, "Cannot get login cookie");
|
||||||
}
|
|
||||||
}
|
|
||||||
logger.debug("Cannot get login cookie!", e);
|
|
||||||
updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.COMMUNICATION_ERROR, "Cannot get login cookie");
|
|
||||||
if (e instanceof InterruptedException) {
|
|
||||||
Thread.currentThread().interrupt();
|
|
||||||
}
|
}
|
||||||
|
} catch (TimeoutException e) {
|
||||||
|
updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.COMMUNICATION_ERROR, "Getting login cookie timeout");
|
||||||
|
} catch (InterruptedException e) {
|
||||||
|
updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.COMMUNICATION_ERROR,
|
||||||
|
"Getting login cookie interrupted");
|
||||||
|
Thread.currentThread().interrupt();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -592,11 +592,10 @@ public class SomfyTahomaBridgeHandler extends BaseBridgeHandler {
|
|||||||
try {
|
try {
|
||||||
eventsId = "";
|
eventsId = "";
|
||||||
sendGetToTahomaWithCookie(TAHOMA_API_URL + "logout");
|
sendGetToTahomaWithCookie(TAHOMA_API_URL + "logout");
|
||||||
} catch (InterruptedException | ExecutionException | TimeoutException e) {
|
} catch (ExecutionException | TimeoutException e) {
|
||||||
logger.debug("Cannot send logout command!", e);
|
logger.debug("Cannot send logout command!", e);
|
||||||
if (e instanceof InterruptedException) {
|
} catch (InterruptedException e) {
|
||||||
Thread.currentThread().interrupt();
|
Thread.currentThread().interrupt();
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -845,12 +844,12 @@ public class SomfyTahomaBridgeHandler extends BaseBridgeHandler {
|
|||||||
logger.debug("Cannot call url: {} with params: {}!", url, urlParameters, e);
|
logger.debug("Cannot call url: {} with params: {}!", url, urlParameters, e);
|
||||||
updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.COMMUNICATION_ERROR);
|
updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.COMMUNICATION_ERROR);
|
||||||
}
|
}
|
||||||
} catch (InterruptedException | TimeoutException e) {
|
} catch (TimeoutException e) {
|
||||||
logger.debug("Cannot call url: {} with params: {}!", url, urlParameters, e);
|
logger.debug("Timeout when calling url: {} with params: {}!", url, urlParameters, e);
|
||||||
updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.COMMUNICATION_ERROR);
|
updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.COMMUNICATION_ERROR);
|
||||||
if (e instanceof InterruptedException) {
|
} catch (InterruptedException e) {
|
||||||
Thread.currentThread().interrupt();
|
updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.COMMUNICATION_ERROR);
|
||||||
}
|
Thread.currentThread().interrupt();
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user