(timeoutMs, cb)
| 30 | const quota = { quota: 1000 }; |
| 31 | |
| 32 | function wait(timeoutMs, cb) { |
| 33 | if (s3Config.isQuotaInflightEnabled()) { |
| 34 | return setTimeout(cb, timeoutMs); |
| 35 | } |
| 36 | return cb(); |
| 37 | } |
| 38 | |
| 39 | function createBucket(bucket, locked, cb) { |
| 40 | const config = { |
no test coverage detected