Skip to content

Commit fd0db9c

Browse files
committed
Remove comment
1 parent 2971f99 commit fd0db9c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

common-lib/src/main/scala/com/gu/mediaservice/lib/aws/SimpleSqsMessageConsumer.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class SimpleSqsMessageConsumer (queueUrl: String, config: CommonConfig) {
1515
ReceiveMessageRequest.builder().queueUrl(queueUrl)
1616
.waitTimeSeconds(20) // Wait for maximum duration (20s) as per doc recommendation: http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-long-polling.html
1717
.maxNumberOfMessages(1) // Pull 1 message at a time to avoid starvation
18-
.messageSystemAttributeNames(attributeNames: _*) // todo come back to this
18+
.messageSystemAttributeNames(attributeNames: _*)
1919
.build()
2020
).messages().asScala.headOption
2121

0 commit comments

Comments
 (0)