Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ public QueryConfigurationsResponse queryConfigurations(QueryConfigurationsReques
} catch (IOException e) {
addressManager.recordFailState(address);
LOGGER.error("query configuration from {} failed, message={}", uri, e.getMessage());
throw new OperationException("", e);
throw new OperationException("query configuration failed!", e);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public void execute() {
startTask(new BackOffSleepTask(configCenterConfiguration.getRefreshIntervalInMillis(), new PollConfigurationTask(0)));
} catch (Exception e) {
LOGGER.warn("get configurations from ConfigCenter failed, and will try again, cause message: {}. current "
+ "fail does not affect the obtained historical configuration.", e.getCause().getMessage());
+ "fail does not affect the obtained historical configuration.", e.getMessage());
startTask(new BackOffSleepTask(failCount + 1, new PollConfigurationTask(failCount + 1)));
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ public void execute() {
}
} catch (Exception e) {
LOGGER.warn("get configurations from KieConfigCenter failed, and will try again, cause message: {}. current "
+ "fail does not affect the obtained historical configuration.", e.getCause().getMessage());
+ "fail does not affect the obtained historical configuration.", e.getMessage());
startTask(
new BackOffSleepTask(failCount + 1, new PollConfigurationTask(failCount + 1, this.configurationsRequest)));
}
Expand Down
Loading