Skip to content

Commit

Permalink
Merge pull request #34 from roberto-aguilar/feature/queue-suffix
Browse files Browse the repository at this point in the history
Use new queue suffix option
  • Loading branch information
taylorotwell authored Mar 11, 2020
2 parents 8f8fd26 + 9a724e9 commit 1d2b16b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Queue/VaporConnector.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ public function connect(array $config)
return new VaporQueue(
new SqsClient($config),
$config['queue'],
$config['prefix'] ?? ''
$config['prefix'] ?? '',
$config['suffix'] ?? ''
);
}

Expand Down

0 comments on commit 1d2b16b

Please sign in to comment.