summaryrefslogtreecommitdiff
path: root/plugins/jobs/drivers
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2021-08-11 12:34:19 +0300
committerValery Piashchynski <[email protected]>2021-08-11 12:34:19 +0300
commitaeb7d301eefc1c47374ab9b758ea137151e29219 (patch)
tree7e2b7cbe0b18251c0d742a9310a7d677e13712a0 /plugins/jobs/drivers
parent3e2e9fbd9650c44d57a41a9dc702fe93aad2b77f (diff)
Increase timeout to 60s.
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'plugins/jobs/drivers')
-rw-r--r--plugins/jobs/drivers/sqs/listener.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/jobs/drivers/sqs/listener.go b/plugins/jobs/drivers/sqs/listener.go
index b72ac065..a283b4a3 100644
--- a/plugins/jobs/drivers/sqs/listener.go
+++ b/plugins/jobs/drivers/sqs/listener.go
@@ -46,7 +46,7 @@ func (j *JobConsumer) listen(ctx context.Context) { //nolint:gocognit
j.log.Error("create queue", "error", err)
}
// To successfully create a new queue, you must provide a
- // queue name that adheres to the limits related to queues
+ // queue name that adheres to the limits related to the queues
// (https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/limits-queues.html)
// and is unique within the scope of your queues. After you create a queue, you
// must wait at least one second after the queue is created to be able to use the <------------