X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/d99713e58b0b9eb284fc3ea7f4008fa80bc5bcc5..44ee7219e5363f85208d0813373e096d9e14c059:/services/keepstore/command.go diff --git a/services/keepstore/command.go b/services/keepstore/command.go index 51031d3607..c589e639f5 100644 --- a/services/keepstore/command.go +++ b/services/keepstore/command.go @@ -149,13 +149,13 @@ func (h *handler) setup(ctx context.Context, cluster *arvados.Cluster, token str h.Cluster = cluster h.Logger = ctxlog.FromContext(ctx) if h.Cluster.API.MaxKeepBlobBuffers <= 0 { - return fmt.Errorf("MaxBuffers must be greater than zero") + return fmt.Errorf("API.MaxKeepBlobBuffers must be greater than zero") } bufs = newBufferPool(h.Logger, h.Cluster.API.MaxKeepBlobBuffers, BlockSize) if h.Cluster.API.MaxConcurrentRequests < 1 { h.Cluster.API.MaxConcurrentRequests = h.Cluster.API.MaxKeepBlobBuffers * 2 - h.Logger.Warnf("MaxRequests <1 or not specified; defaulting to MaxKeepBlobBuffers * 2 == %d", h.Cluster.API.MaxConcurrentRequests) + h.Logger.Warnf("API.MaxConcurrentRequests <1 or not specified; defaulting to MaxKeepBlobBuffers * 2 == %d", h.Cluster.API.MaxConcurrentRequests) } if h.Cluster.Collections.BlobSigningKey != "" {