Skip to content
Merged
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
8 changes: 4 additions & 4 deletions src/infra/docs-lambda-index-publisher/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@

const string bucketName = "elastic-docs-link-index";

// await LambdaBootstrapBuilder.Create(Handler)
// .Build()
// .RunAsync();
await LambdaBootstrapBuilder.Create(Handler)
.Build()
.RunAsync();

// Uncomment to test locally without uploading
await CreateLinkIndex(new AmazonS3Client());
// await CreateLinkIndex(new AmazonS3Client());

#pragma warning disable CS8321 // Local function is declared but never used
static async Task<string> Handler(ILambdaContext context)
Expand Down
Loading