Skip to content

Commit

Permalink
uneeded change
Browse files Browse the repository at this point in the history
  • Loading branch information
comcalvi committed Oct 21, 2022
1 parent 124e58c commit 442c190
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
Expand Up @@ -27,4 +27,4 @@ def handler(event, context):
# If the bucket does not exist, then this error will be thrown
raise RuntimeError(f'failed to delete bucket: {str(error)}')

return {'Data': {'Value': f'confirmed that bucket with name {s3_bucket_name} exists...bucket has been deleted' }}
return {'Data': {'Value': f'confirmed that bucket with name {s3_bucket_name} exists...bucket has been deleted' }}
@@ -1 +1 @@
node_modules
node_modules
Expand Up @@ -13,4 +13,4 @@ COPY . /usr/src/app

USER node

CMD [ "node", "sdk-call.js" ]
CMD [ "node", "sdk-call.js" ]
2 changes: 1 addition & 1 deletion packages/@aws-cdk/core/lib/fs/fingerprint.ts
Expand Up @@ -105,7 +105,7 @@ export function contentFingerprint(file: string): string {

// We also must suppress typescript typechecks as we are using a version of
// @types/node that only supports node 10 declarations.
const stats = fs.statSync(file/*, { bigint: true }*/);
const stats = fs.statSync(file, { bigint: true });
const cacheKey = JSON.stringify({
mtime_unix: stats.mtime.toUTCString(),
mtime_ms: stats.mtimeMs.toString(),
Expand Down
1 change: 0 additions & 1 deletion packages/aws-cdk/lib/api/aws-auth/sdk-provider.ts
Expand Up @@ -210,7 +210,6 @@ export class SdkProvider {
if (baseCreds.source === 'correctDefault' || baseCreds.source === 'plugin') {
debug(e.message);
warning(`${fmtObtainedCredentials(baseCreds)} could not be used to assume '${options.assumeRoleArn}', but are for the right account. Proceeding anyway.`);
warning(`${e.message}`);
return { sdk: new SDK(baseCreds.credentials, env.region, this.sdkOptions), didAssumeRole: false };
}

Expand Down

0 comments on commit 442c190

Please sign in to comment.