We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e96bb1 commit ff146e3Copy full SHA for ff146e3
tests/e2e/idempotency/infrastructure.py
@@ -7,10 +7,12 @@
7
8
class IdempotencyDynamoDBStack(BaseInfrastructure):
9
def create_resources(self):
10
- table = self._create_dynamodb_table(function_props={"timeout": Duration.seconds(10)})
+ table = self._create_dynamodb_table()
11
12
env_vars = {"IdempotencyTable": table.table_name}
13
- functions = self.create_lambda_functions(function_props={"environment": env_vars})
+ functions = self.create_lambda_functions(
14
+ function_props={"environment": env_vars, "timeout": Duration.seconds(10)},
15
+ )
16
17
table.grant_read_write_data(functions["TtlCacheExpirationHandler"])
18
table.grant_read_write_data(functions["TtlCacheTimeoutHandler"])
0 commit comments