Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(infra): fix typos on table name and lambda description #68

Merged
merged 1 commit into from
Feb 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
chore(infra): fix typos on table name and lambda description
  • Loading branch information
mirgj committed Feb 22, 2022
commit 1fc6c6da900875717da7b7a5e6b7c405c824709c
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export class DataStoragePersistent extends NestedStack {
})

this.instantDeliveryProviderLocks = new hyperlocal_ddb.Table(this, 'InstantDeliveryProviderLocks', {
tableName: namespaced(this, 'inteinstant-delivery-provider-locks'),
tableName: namespaced(this, 'instant-delivery-provider-locks'),
removalPolicy: props.removalPolicy,
partitionKey: {
name: 'ID',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export class RequestOrderFulfillmentLambda extends DeclaredLambdaFunction<Enviro

const declaredProps: TDeclaredProps = {
functionName: namespaced(scope, 'InstantDeliveryProvider-RequestOrderFulfillment'),
description: 'Internal webhook provider - RequestOrderFulfillment lambda function',
description: 'Instant Delivery webhook provider - RequestOrderFulfillment lambda function',
code: lambda.Code.fromAsset(DeclaredLambdaFunction.getLambdaDistPath(__dirname, '@lambda/instant-delivery-provider-requestorderfulfillment.zip')),
dependencies: props.dependencies,
timeout: Duration.seconds(30),
Expand Down