Skip to content

Commit

Permalink
setting default region
Browse files Browse the repository at this point in the history
Co-authored-by: datashaman <[email protected]>
  • Loading branch information
otanim and datashaman authored Oct 30, 2024
1 parent e3174ae commit 36f774f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ServiceBusSQSChannel.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public function __construct(array $config = [])
protected function initializeSqsClient(): void
{
$this->sqs = new SqsClient([
'region' => Arr::get($this->config, 'sqs.region'),
'region' => Arr::get($this->config, 'sqs.region', 'eu-west-1'),
'version' => 'latest',
'credentials' => [
'key' => Arr::get($this->config, 'sqs.key'),
Expand Down

0 comments on commit 36f774f

Please sign in to comment.