(request, response, bucketInfo, objectMd, log, cb)
| 993 | } |
| 994 | |
| 995 | function getMetadata(request, response, bucketInfo, objectMd, log, cb) { |
| 996 | if (!objectMd) { |
| 997 | return cb(errors.ObjNotFound); |
| 998 | } |
| 999 | return _respond(response, { Body: JSON.stringify(objectMd) }, log, cb); |
| 1000 | } |
| 1001 | |
| 1002 | function initiateMultipartUpload(request, response, log, callback) { |
| 1003 | const err = _checkMultipleBackendRequest(request, log); |
nothing calls this directly
no test coverage detected