Skip to content

Commit

Permalink
Treat get settings from one client failure as warning
Browse files Browse the repository at this point in the history
  • Loading branch information
RichardChen820 committed Jun 10, 2024
1 parent 74da055 commit 23997a3
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 @@ -463,7 +463,7 @@ func (csl *ConfigurationSettingLoader) ExecuteFailoverPolicy(ctx context.Context
successful = false
updateClientBackoffStatus(clientWrapper, successful)
if IsFailoverable(err) {
klog.V(3).Info("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 23997a3

Please sign in to comment.