Skip to content

Commit

Permalink
Update IntegrationConfigProvider.java
Browse files Browse the repository at this point in the history
catch all exception types
  • Loading branch information
frwiqueueit committed Oct 2, 2019
1 parent 1daed82 commit 5effe0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Documentation/IntegrationConfigProvider.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ private static void refreshCache(boolean init) {
String jsonText = getJsonText(configUrl);
cachedIntegrationConfig = new Gson().fromJson(jsonText, CustomerIntegration.class);
return;
} catch (IOException ex) {
} catch (Exception ex) {
++tryCount;
if (tryCount >= 5) {
//Use your favorit logging framework to log the exceptoin
Expand Down

0 comments on commit 5effe0a

Please sign in to comment.