Skip to content

Commit 2b3f885

Browse files
authored
Merge pull request #21 from curtisgibby/patch-1
Fix queues in example configuration
2 parents 320942f + d5634eb commit 2b3f885

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The plugin expects the following configuration data in the Configure keys:
4242
'region' => 'eu-central-1' // must match the region where the sqs queue was created
4343
],
4444
'queues' => [
45-
'queues.testQueue1' => 'sqs queue url, for example: https://sqs.eu-central-1.amazonaws.com/12345/someQueue'
45+
'testQueue1' => 'sqs queue url, for example: https://sqs.eu-central-1.amazonaws.com/12345/someQueue'
4646
]
4747
]);
4848

@@ -166,4 +166,4 @@ IMPORTANT: return true to delete the message upon processing, false to leave the
166166

167167
To kill a long lived worker shell in the middle of the iterations loop, you can send SIGHUP by calling `kill -1 PID` on the commandline (PID is the process Id of your running worker shell).
168168

169-
This will cause the current iteration to finish and stop the worker afterwards.
169+
This will cause the current iteration to finish and stop the worker afterwards.

0 commit comments

Comments
 (0)