X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/52b7b2934d5d74ee67ca13f8d1cc95f1379faddc..73eb047a9a1eb83d10c84cc959fdd049b7fd5fab:/lib/config/deprecated.go diff --git a/lib/config/deprecated.go b/lib/config/deprecated.go index e6b06c1314..7b11e090ee 100644 --- a/lib/config/deprecated.go +++ b/lib/config/deprecated.go @@ -532,14 +532,14 @@ func (ldr *Loader) loadOldKeepBalanceConfig(cfg *arvados.Config) error { cluster.API.KeepServiceRequestTimeout = *oc.RequestTimeout } - msg := "The %s configuration option is no longer supported. Please remove it from your configuration file. Keep-balance will operate on all configured volumes." + msg := "The %s configuration option is no longer supported. Please remove it from your configuration file. See the keep-balance upgrade notes at https://doc.arvados.org/admin/upgrading.html for more details." // If the keep service type provided is "disk" silently ignore it, since // this is what ends up being done anyway. if oc.KeepServiceTypes != nil { numTypes := len(*oc.KeepServiceTypes) if numTypes != 0 && !(numTypes == 1 && (*oc.KeepServiceTypes)[0] == "disk") { - return fmt.Errorf(msg, "KeepServiceType") + return fmt.Errorf(msg, "KeepServiceTypes") } }