]> git.basschouten.com Git - openhab-addons.git/commitdiff
[smhi] Catch exception that could cause binding to stop updating channels (#10794)
authorAnders Alfredsson <30875102+pacive@users.noreply.github.com>
Sat, 5 Jun 2021 17:39:21 +0000 (19:39 +0200)
committerGitHub <noreply@github.com>
Sat, 5 Jun 2021 17:39:21 +0000 (19:39 +0200)
Signed-off-by: Anders Alfredsson <andersb86@gmail.com>
bundles/org.openhab.binding.smhi/src/main/java/org/openhab/binding/smhi/internal/SmhiConnector.java

index aa42d7f29b08393f9e3fc79fc62709fddc1fe4ca..8e79aa16231040b76701eca15c9c786a06bfd034 100644 (file)
@@ -15,6 +15,7 @@ package org.openhab.binding.smhi.internal;
 import static org.openhab.binding.smhi.internal.SmhiBindingConstants.*;
 
 import java.time.ZonedDateTime;
+import java.time.format.DateTimeParseException;
 import java.util.Locale;
 import java.util.concurrent.ExecutionException;
 import java.util.concurrent.TimeoutException;
@@ -26,6 +27,8 @@ import org.eclipse.jetty.client.api.Request;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
+import com.google.gson.JsonParseException;
+
 /**
  * Class for handling http requests to Smhi's API and return values.
  *
@@ -88,7 +91,11 @@ public class SmhiConnector {
         logger.debug("Received response with status {} - {}", resp.getStatus(), resp.getReason());
         switch (resp.getStatus()) {
             case 200:
-                return Parser.parseTimeSeries(resp.getContentAsString());
+                try {
+                    return Parser.parseTimeSeries(resp.getContentAsString());
+                } catch (JsonParseException | DateTimeParseException e) {
+                    throw new SmhiException(e);
+                }
             case 400:
             case 404:
                 throw new PointOutOfBoundsException();