We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 959d143 commit 55bb047Copy full SHA for 55bb047
localstack-core/localstack/services/lambda_/event_source_mapping/pollers/sqs_poller.py
@@ -160,7 +160,6 @@ def poll_events(self) -> None:
160
161
messages = response.get("Messages", [])
162
if not messages:
163
- # TODO: Consider this case triggering longer wait-times (with backoff) between poll_events calls in the outer-loop.
164
raise EmptyPollResultsException(service="sqs", source_arn=self.source_arn)
165
166
LOG.debug("Polled %d events from %s", len(messages), self.source_arn)
0 commit comments