-
Notifications
You must be signed in to change notification settings - Fork 299
Lambda sqs updates #7571
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
base: master
Are you sure you want to change the base?
Lambda sqs updates #7571
Conversation
Using ILogger results in an error when running the lambda function: Exception: System.InvalidOperationException: Unable to resolve service for type 'Microsoft.Extensions.Logging.ILogger`1[TriggerMessageHandler]' while attempting to activate 'TriggerMessageHandler'.
|
For samples SQSLambda_3 and 4, I reverted to using the static logger in I tried wiring up logging using a Startup class - but no luck. For reference, my code: [LambdaStartup]
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddLogging();
}
}It would be worth investigating this issue further. |
|
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
|
Blocked pending AWS Lambda support for .NET 10 |
|
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
|
Pending .NET 10 support for AWS Lambda |
|
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
|
Pending .NET 10 support for AWS Lambda |
Fixes #7251.
This cannot be merged until .NET 10 support is added for AWS Lambda functions in December; https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtimes-future.