isBucketNotFoundStatus return true for bucket is not found, false for other status.
(status BucketStatus)
| 214 | // isBucketNotFoundStatus return true for bucket is not found, |
| 215 | // false for other status. |
| 216 | func isBucketNotFoundStatus(status BucketStatus) bool { |
| 217 | return status == BucketStatusDeleted || status == BucketStatusUnknown |
| 218 | } |
no outgoing calls
no test coverage detected