Merge branch 'master' into 14885-ciso-and-conda-packaging-pr
[arvados.git] / services / keepstore / keepstore.go
index 6ae414bf931ce9164f7beefcc0d9be294da6e9c5..a6c8cd99545c24fdc2a56f6c2ff1866682a6ed6d 100644 (file)
@@ -50,6 +50,7 @@ var (
        DiskHashError       = &KeepError{500, "Hash mismatch in stored data"}
        ExpiredError        = &KeepError{401, "Expired permission signature"}
        NotFoundError       = &KeepError{404, "Not Found"}
+       VolumeBusyError     = &KeepError{503, "Volume backend busy"}
        GenericError        = &KeepError{500, "Fail"}
        FullError           = &KeepError{503, "Full"}
        SizeRequiredError   = &KeepError{411, "Missing Content-Length"}