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 3da013e commit 97a0aa2Copy full SHA for 97a0aa2
src/Kitar/Dynamodb/Connection.php
@@ -72,8 +72,8 @@ public function setClient(DynamoDbClient $client)
72
protected function createClient(array $config)
73
{
74
$dynamoConfig = [
75
- 'region' => $config['region'],
76
- 'version' => 'latest',
+ 'region' => $config['region'] ?? 'us-east-1',
+ 'version' => $config['version'] ?? 'latest',
77
'endpoint' => $config['endpoint'] ?? null,
78
];
79
0 commit comments