standardnotes / server

Server ecosystem for Standard Notes; fully self-hostable.
https://standardnotes.com/help/self-hosting/docker
GNU General Public License v3.0
264 stars 62 forks source link

Self-hosted logs being spammed with AWS error #1057

Open ChesterHCopperpot opened 5 months ago

ChesterHCopperpot commented 5 months ago

See log below. Any thoughts on how to fix this? PS: Congrats on the Proton acquire!

localstack_self_hosted           | 2024-05-29T14:34:43.532 ERROR --- [   asgi_gw_6] l.aws.handlers.logging     : exception during call chain: Operation detection failed. Missing Action in request for query-protocol service ServiceModel(sqs).
localstack_self_hosted           | 2024-05-29T14:34:43.539 ERROR --- [   asgi_gw_1] l.aws.handlers.logging     : exception during call chain: Operation detection failed. Missing Action in request for query-protocol service ServiceModel(sqs).
localstack_self_hosted           | 2024-05-29T14:34:43.544 ERROR --- [   asgi_gw_5] l.aws.handlers.logging     : exception during call chain: Operation detection failed. Missing Action in request for query-protocol service ServiceModel(sqs).
localstack_self_hosted           | 2024-05-29T14:34:43.546 ERROR --- [   asgi_gw_2] l.aws.handlers.logging     : exception during call chain: Operation detection failed. Missing Action in request for query-protocol service ServiceModel(sqs).
localstack_self_hosted           | 2024-05-29T14:34:43.601 ERROR --- [   asgi_gw_0] l.aws.handlers.logging     : exception during call chain: Operation detection failed. Missing Action in request for query-protocol service ServiceModel(sqs).
localstack_self_hosted           | 2024-05-29T14:34:43.605 ERROR --- [   asgi_gw_4] l.aws.handlers.logging     : exception during call chain: Operation detection failed. Missing Action in request for query-protocol service ServiceModel(sqs).
localstack_self_hosted           | 2024-05-29T14:34:43.607 ERROR --- [   asgi_gw_8] l.aws.handlers.logging     : exception during call chain: Operation detection failed. Missing Action in request for query-protocol service ServiceModel(sqs).
localstack_self_hosted           | 2024-05-29T14:34:43.612 ERROR --- [   asgi_gw_7] l.aws.handlers.logging     : exception during call chain: Operation detection failed. Missing Action in request for query-protocol service ServiceModel(sqs).
localstack_self_hosted           | 2024-05-29T14:34:43.658 ERROR --- [   asgi_gw_2] l.aws.handlers.logging     : exception during call chain: Operation detection failed. Missing Action in request for query-protocol service ServiceModel(sqs).
localstack_self_hosted           | 2024-05-29T14:34:43.667 ERROR --- [   asgi_gw_3] l.aws.handlers.logging     : exception during call chain: Operation detection failed. Missing Action in request for query-protocol service ServiceModel(sqs).
localstack_self_hosted           | 2024-05-29T14:34:43.669 ERROR --- [   asgi_gw_1] l.aws.handlers.logging     : exception during call chain: Operation detection failed. Missing Action in request for query-protocol service ServiceModel(sqs).
localstack_self_hosted           | 2024-05-29T14:34:43.676 ERROR --- [   asgi_gw_6] l.aws.handlers.logging     : exception during call chain: Operation detection failed. Missing Action in request for query-protocol service ServiceModel(sqs).
localstack_self_hosted           | 2024-05-29T14:34:43.711 ERROR --- [   asgi_gw_8] l.aws.handlers.logging     : exception during call chain: Operation detection failed. Missing Action in request for query-protocol service ServiceModel(sqs).
localstack_self_hosted           | 2024-05-29T14:34:43.732 ERROR --- [   asgi_gw_5] l.aws.handlers.logging     : exception during call chain: Operation detection failed. Missing Action in request for query-protocol service ServiceModel(sqs).
localstack_self_hosted           | 2024-05-29T14:34:43.733 ERROR --- [   asgi_gw_2] l.aws.handlers.logging     : exception during call chain: Operation detection failed. Missing Action in request for query-protocol service ServiceModel(sqs).
localstack_self_hosted           | 2024-05-29T14:34:43.737 ERROR --- [   asgi_gw_4] l.aws.handlers.logging     : exception during call chain: Operation detection failed. Missing Action in request for query-protocol service ServiceModel(sqs).
localstack_self_hosted           | 2024-05-29T14:34:43.763 ERROR --- [   asgi_gw_3] l.aws.handlers.logging     : exception during call chain: Operation detection failed. Missing Action in request for query-protocol service ServiceModel(sqs).
localstack_self_hosted           | 2024-05-29T14:34:43.791 ERROR --- [   asgi_gw_7] l.aws.handlers.logging     : exception during call chain: Operation detection failed. Missing Action in request for query-protocol service ServiceModel(sqs).
localstack_self_hosted           | 2024-05-29T14:34:43.793 ERROR --- [   asgi_gw_8] l.aws.handlers.logging     : exception during call chain: Operation detection failed. Missing Action in request for query-protocol service ServiceModel(sqs).
localstack_self_hosted           | 2024-05-29T14:34:43.797 ERROR --- [   asgi_gw_1] l.aws.handlers.logging     : exception during call chain: Operation detection failed. Missing Action in request for query-protocol service ServiceModel(sqs).
localstack_self_hosted           | 2024-05-29T14:34:43.815 ERROR --- [   asgi_gw_4] l.aws.handlers.logging     : exception during call chain: Operation detection failed. Missing Action in request for query-protocol service ServiceModel(sqs).
mpodshivalin commented 1 week ago

I encountered the same issue. In a docker-compose.yml file from about a year ago, LocalStack version 1.3 was used

localstack:
    image: docker.io/localstack/localstack:1.3

But now the example here https://standardnotes.com/help/self-hosting/docker uses

  localstack:
    image: docker.io/localstack/localstack:3.0

This change fixed it for me