We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5349b15 commit d4bda10Copy full SHA for d4bda10
src/Queue/Connectors/SqsFifoConnector.php
@@ -36,7 +36,9 @@ public function connect(array $config)
36
$allowDelay = (bool)Arr::pull($config, 'allow_delay', false);
37
38
return new SqsFifoQueue(
39
- new SqsClient($config),
+ new SqsClient(
40
+ Arr::except($config, ['token'])
41
+ ),
42
$config['queue'],
43
$config['prefix'] ?? '',
44
$config['suffix'] ?? '',
0 commit comments