Skip to content

Commit 86f9fe7

Browse files
committed
Merge branch 'improvement/CLDSRV-717-fixes-unification' into q/9.0
2 parents 300b841 + b36727b commit 86f9fe7

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

docs/RELEASE.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ Docker images are hosted on [ghcri.io](https://github.com/orgs/scality/packages)
66
CloudServer has a few images there:
77

88
* Cloudserver container image: ghcr.io/scality/cloudserver
9-
* Dashboard oras image: ghcr.io/scality/cloudserver/cloudser-dashboard
10-
* Policies oras image: ghcr.io/scality/cloudserver/cloudser-dashboard
9+
* Dashboard oras image: ghcr.io/scality/cloudserver/cloudserver-dashboards
1110

1211
With every CI build, the CI will push images, tagging the
1312
content with the developer branch's short SHA-1 commit hash.

lib/api/apiUtils/authorization/permissionChecks.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ function isObjAuthorized(bucket, objectMD, requestTypesInput, canonicalID, authI
466466
let arn = null;
467467
let isUserUnauthenticated = false;
468468
if (authInfo) {
469-
requesterIsNotUser = !isRequesterNonAccountUser(authInfo);
469+
requesterIsNotUser = !isRequesterNonAccountUser(authInfo);
470470
arn = authInfo.getArn();
471471
isUserUnauthenticated = arn === undefined;
472472
}

lib/api/objectGet.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ function objectGet(authInfo, request, returnTagCount, log, callback) {
155155
range[1] - range[0] + 1;
156156
responseMetaHeaders['Content-Range'] =
157157
`bytes ${range[0]}-${range[1]}/${objLength}`;
158-
streamingParams.rangeStart = (range[0] || typeof range[0] === 'number') ?
158+
streamingParams.rangeStart = (range[0] || typeof range[0] === 'number') ?
159159
range[0].toString() : undefined;
160160
streamingParams.rangeEnd = range[1] ?
161161
range[1].toString() : undefined;

tests/functional/aws-node-sdk/test/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const { S3 } = require('aws-sdk');
22
const assert = require('assert');
33
const getConfig = require('./support/config');
44

5-
describe.skip('S3 connect test', () => {
5+
describe('S3 connect test', () => {
66
const config = getConfig();
77
const s3 = new S3(config);
88

0 commit comments

Comments
 (0)