Skip to content

Commit

Permalink
fix(appsync): update timestamp for apikey test (#15624)
Browse files Browse the repository at this point in the history
Fixes #15623 by updating timestamp for apikey integ test.

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
haimlit authored Jul 18, 2021
1 parent 2647cf3 commit 9c4e51c
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 @@ -28,7 +28,7 @@
"ApiId"
]
},
"Expires": 1626566400
"Expires": 1658053715
},
"DependsOn": [
"ApiSchema510EECD7"
Expand Down
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-appsync/test/integ.auth-apikey.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const api = new GraphqlApi(stack, 'Api', {
authorizationType: AuthorizationType.API_KEY,
apiKeyConfig: {
// Generate a timestamp that's 365 days ahead, use atTimestamp so integ test doesn't fail
expires: Expiration.atTimestamp(1626566400000),
expires: Expiration.atTimestamp(1658053715000),
},
},
},
Expand Down

0 comments on commit 9c4e51c

Please sign in to comment.