Merge branch '15370-loopback-dispatchcloud'
[arvados.git] / lib / config / load.go
index acc54cf92df10d3a16c2e8e811f6b46e1f4670ac..fbd01488a0be51c430c0c6efc9ef7862ebb88fe5 100644 (file)
@@ -367,7 +367,7 @@ func (ldr *Loader) checkClusterID(label, clusterID string, emptyStringOk bool) e
        if emptyStringOk && clusterID == "" {
                return nil
        } else if !acceptableClusterIDRe.MatchString(clusterID) {
        if emptyStringOk && clusterID == "" {
                return nil
        } else if !acceptableClusterIDRe.MatchString(clusterID) {
-               return fmt.Errorf("%s: cluster ID should be 5 alphanumeric characters", label)
+               return fmt.Errorf("%s: cluster ID should be 5 lowercase alphanumeric characters", label)
        }
        return nil
 }
        }
        return nil
 }