commands/uploader: temporarily allow failed lock searches

This commit is contained in:
Taylor Blau 2017-01-23 14:25:00 -07:00
parent a37c9b8d64
commit aac05886a4

@ -49,11 +49,12 @@ func newUploadContext(remote string, dryRun bool) *uploadContext {
lockClient := newLockClient(remote)
locks, err := lockClient.SearchLocks(nil, 0, false)
if err != nil {
ExitWithError(err)
}
for _, l := range locks {
ctx.locks[l.Path] = l
Error("WARNING: Unable to search for locks contained in this push.")
Error(" Temporarily skipping check ...")
} else {
for _, l := range locks {
ctx.locks[l.Path] = l
}
}
return ctx