Skip to content

Commit 9830a4d

Browse files
prepare 3.7.3 release (#139)
1 parent 34462d5 commit 9830a4d

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.circleci/config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ jobs:
8989
sudo apt-get update &&
9090
sudo apt-get install circleci-php-5.5.36 &&
9191
php -r "copy('https://getcomposer.org/installer', '/tmp/composer-setup.php');" &&
92-
sudo php /tmp/composer-setup.php --install-dir=/usr/local/bin --filename=composer
92+
sudo php /tmp/composer-setup.php --install-dir=/usr/local/bin --version 1.10.16 --filename=composer
93+
# Composer 2.0 doesn't work with the older versions of php-cs-fixer that support PHP 5.5
9394
- run:
9495
name: install Docker
9596
command: |

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)

tests/DynamoDbFeatureRequesterTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ protected function putItem($namespace, $key, $version, $json)
5353
self::$dynamoDbClient->putItem(array(
5454
'TableName' => self::TABLE_NAME,
5555
'Item' => array(
56-
'namespace' => array('S' => self::PREFIX . '/' . $namespace),
56+
'namespace' => array('S' => self::PREFIX . ':' . $namespace),
5757
'key' => array('S' => $key),
5858
'version' => array('N' => strval($version)),
5959
'item' => array('S' => $json)

0 commit comments

Comments
 (0)