Skip to content

Commit

Permalink
add: mili seconds to timestamp to avoid name collision
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbyu99 committed Oct 1, 2024
1 parent 78614a5 commit 3c6911d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const cf = new CloudFormationClient(region);
const customS3Client = new S3Client(region);
const awsS3Client = new S3({ region: region });
const cognitoClient = new CognitoClient({ apiVersion: '2016-04-19', region: region });
const BUILD_TIMESTAMP = moment().format('YYYYMMDDHHmmss');
const BUILD_TIMESTAMP = moment().format('YYYYMMDDHHmmssSSS');
const STACK_NAME = `RelationalAuthV2TransformersFFTest-${BUILD_TIMESTAMP}`;
const BUCKET_NAME = `appsync-relational-auth-transformer-ff-test-${BUILD_TIMESTAMP}`;
const LOCAL_FS_BUILD_DIR = '/tmp/relational_auth_transformer_ff_tests/';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const cf = new CloudFormationClient(region);
const customS3Client = new S3Client(region);
const awsS3Client = new S3({ region: region });
const cognitoClient = new CognitoClient({ apiVersion: '2016-04-19', region: region });
const BUILD_TIMESTAMP = moment().format('YYYYMMDDHHmmss');
const BUILD_TIMESTAMP = moment().format('YYYYMMDDHHmmssSSS');
const STACK_NAME = `RelationalAuthV2TransformersFFTest-${BUILD_TIMESTAMP}`;
const BUCKET_NAME = `appsync-relational-auth-transformer-ff-test-${BUILD_TIMESTAMP}`;
const LOCAL_FS_BUILD_DIR = '/tmp/relational_auth_transformer_ff_tests/';
Expand Down

0 comments on commit 3c6911d

Please sign in to comment.