14325: Start up immediately if there are no stale locks.
[arvados.git] / lib / dispatchcloud / node_size.go
index 2fac799f40e30ae99e0b496cbe7e1e343d759a4b..d7f4585619417904a1125bc05d54d58499199179 100644 (file)
@@ -6,7 +6,6 @@ package dispatchcloud
 
 import (
        "errors"
-       "log"
        "regexp"
        "sort"
        "strconv"
@@ -34,12 +33,10 @@ var pdhRegexp = regexp.MustCompile(`^[0-9a-f]{32}\+(\d+)$`)
 func estimateDockerImageSize(collectionPDH string) int64 {
        m := pdhRegexp.FindStringSubmatch(collectionPDH)
        if m == nil {
-               log.Printf("estimateDockerImageSize: '%v' did not match pdhRegexp, returning 0", collectionPDH)
                return 0
        }
        n, err := strconv.ParseInt(m[1], 10, 64)
        if err != nil || n < 122 {
-               log.Printf("estimateDockerImageSize: short manifest %v or error (%v), returning 0", n, err)
                return 0
        }
        // To avoid having to fetch the collection, take advantage of