Skip to content

Commit

Permalink
fix conflicts and optimize cloud refresher
Browse files Browse the repository at this point in the history
  • Loading branch information
yanhom1314 committed Dec 16, 2023
1 parent 1f803cd commit edb2d21
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ protected void doRefresh(DtpProperties properties) {
}

protected boolean needRefresh(Set<String> keys) {
if (CollectionUtils.isEmpty(keys)) {
return false;
}
keys = keys.stream()
.filter(str -> str.startsWith(MAIN_PROPERTIES_PREFIX))
.collect(Collectors.toSet());
Expand Down

0 comments on commit edb2d21

Please sign in to comment.