Skip to content

Commit

Permalink
chore(infra): fix typos on table name and lambda description
Browse files Browse the repository at this point in the history
  • Loading branch information
mirgj committed Feb 22, 2022
1 parent 8623398 commit 6833db3
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 @@ -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

0 comments on commit 6833db3

Please sign in to comment.