Skip to content

Commit

Permalink
flag name change
Browse files Browse the repository at this point in the history
  • Loading branch information
benzekrimaha committed Apr 30, 2024
1 parent ecd4531 commit 5b12565
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/IAMClient.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ declare class VaultClient {
log: any;
_path: string;
useAuthenticatedAdminRoutes: boolean;
parameterValidation: true;
parameterValidation: boolean;
setCustomEndpointForSignature(host: any, path: any): void;
_host: any;
__path: any;
Expand Down
2 changes: 1 addition & 1 deletion lib/IAMClient.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/IAMClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class VaultClient {
this.log = new this.logApi.Logger('VaultClient');
this._path = path;
this.useAuthenticatedAdminRoutes = false;
this.parameterValidation = parameterValidation || true;
this.parameterValidation = parameterValidation !== undefined ? parameterValidation : true;
}

setCustomEndpointForSignature(host, path) {
Expand Down

0 comments on commit 5b12565

Please sign in to comment.