Skip to content

Commit fbf4721

Browse files
author
Dylan
authored
Merge pull request #708 from overmindtech/fix-sqs-list
Fixed SQS list method
2 parents 44afc11 + 21fe4ba commit fbf4721

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

adapters/sqs-queue.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ func NewSQSQueueAdapter(client sqsClient, accountID string, region string) *adap
7878
var inputs []*sqs.GetQueueAttributesInput
7979
for _, url := range output.QueueUrls {
8080
inputs = append(inputs, &sqs.GetQueueAttributesInput{
81-
QueueUrl: &url,
81+
QueueUrl: &url,
82+
AttributeNames: []types.QueueAttributeName{"All"},
8283
})
8384
}
8485
return inputs, nil

0 commit comments

Comments
 (0)