Skip to content

Commit

Permalink
Treat get settings from one client failure as warning (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
RichardChen820 authored Jun 18, 2024
1 parent 5303170 commit c31ef11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/loader/configuration_setting_loader.go
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ func (csl *ConfigurationSettingLoader) ExecuteFailoverPolicy(ctx context.Context
successful = false
updateClientBackoffStatus(clientWrapper, successful)
if IsFailoverable(err) {
klog.V(3).Infof("current client of '%s' failed to get settings: %s", clientWrapper.Endpoint, err.Error())
klog.Warningf("current client of '%s' failed to get settings: %s", clientWrapper.Endpoint, err.Error())
errors = append(errors, err)
continue
}
Expand Down

0 comments on commit c31ef11

Please sign in to comment.