Skip to content

Commit 8a3cd23

Browse files
committed
make prefix concatenation in DynamoDB consistent with other SDKs
1 parent 3f7fe2d commit 8a3cd23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/LaunchDarkly/Impl/Integrations/DynamoDbFeatureRequester.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public function __construct($baseUri, $sdkKey, $options)
2626
$this->_client = new DynamoDbClient($dynamoDbOptions);
2727

2828
$prefix = isset($options['dynamodb_prefix']) ? $options['dynamodb_prefix'] : '';
29-
$this->_prefix = ($prefix != null && $prefix != '') ? ($prefix . '/') : '';
29+
$this->_prefix = ($prefix != null && $prefix != '') ? ($prefix . ':') : '';
3030
}
3131

3232
protected function readItemString($namespace, $key)

0 commit comments

Comments
 (0)