Skip to content

Commit

Permalink
CLDSRV-424:CLDSRV version bump
Browse files Browse the repository at this point in the history
Update lib/api/api.js

Co-authored-by: Jonathan Gramain <[email protected]>
  • Loading branch information
benzekrimaha and jonathan-gramain committed Nov 7, 2023
1 parent 733f424 commit 6abb0d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lib/api/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,8 @@ const api = {
// Any explicit deny rejects the current API call
log.trace('authorization denial from Vault');
return errors.AccessDenied;
} else if (authResults[i].isAllowed) {
}
if (authResults[i].isAllowed) {
// If the action is allowed, the result is not implicit
// Deny.
isImplicitDeny[authResults[i].action] = false;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "s3",
"version": "7.10.31",
"version": "7.10.32",
"description": "S3 connector",
"main": "index.js",
"engines": {
Expand Down

0 comments on commit 6abb0d9

Please sign in to comment.