You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Container io.awspring.cloud.sqs.sqsListenerEndpointContainer#0 stopped. It then shows memory data in the logs.
This seems to happen randomly.
I know the example below doesn't give a lot of information. The code is running in a docker container within ECS/Fargate.
Sample
@SqsListener("generate-report-queue")
funonReceiveMessage(message:String) {
logger.info("Received the following message to generate a report: $message")
if(message.uppercase()=="CURRENT"){
CurrentReportGenerator(dynamoDbUtils, slackUtils, hrChannel).generate()
}
elseif(StringUtils.isUserRequest(message)){
UserReportGenerator(dynamoDbUtils, slackUtils, hrChannel, message).generate()
}
}
The text was updated successfully, but these errors were encountered:
Type: Bug
Component:
SQS
Describe the bug
Container io.awspring.cloud.sqs.sqsListenerEndpointContainer#0 stopped. It then shows memory data in the logs.
This seems to happen randomly.
I know the example below doesn't give a lot of information. The code is running in a docker container within ECS/Fargate.
Sample
The text was updated successfully, but these errors were encountered: