* Route requests on 'internal s3' port * Same as routeRequest, but ignoring user's bucket policy. This should be used only for * backbeat and other internal/system processes that must not be affected by user's bucket * policy. * Note that this is not a temporary measure: eventual
(req, res)
| 114 | * @returns {undefined} |
| 115 | */ |
| 116 | internalRouteRequest(req, res) { |
| 117 | req.isInternalServiceRequest = true; // eslint-disable-line no-param-reassign |
| 118 | req.bypassUserBucketPolicies = true; // eslint-disable-line no-param-reassign |
| 119 | return this.routeRequest(req, res); |
| 120 | } |
| 121 | |
| 122 | /** |
| 123 | * Route requests on 's3' port |