Skip to content
This repository has been archived by the owner on Oct 18, 2021. It is now read-only.

Commit

Permalink
feat: update java client to v7.3.2 (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
melanahammel authored Oct 9, 2020
1 parent af828e6 commit a22e8ad
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ First, make sure the following environment variables are set before running the

``` bash
export CERBERUS_ADDR=https://example.cerberus.com
export TEST_REGION=us-west-2
export CERBERUS_REGION=us-west-2
export CERBERUS_ROOT_SDB_PATH=example/integration-tests-sdb/
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# limitations under the License.
#

version=7.1.0
version=7.1.1
groupId=com.nike
artifactId=cerberus-archaius-client

Expand Down
2 changes: 1 addition & 1 deletion gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ configurations.all {

dependencies {
compile 'com.netflix.archaius:archaius-aws:0.6.5'
compile 'com.nike:cerberus-client:7.3.1'
compile 'com.nike:cerberus-client:7.3.2'

compile "org.apache.commons:commons-lang3:3.5"
compile "com.squareup.okhttp3:okhttp:3.9.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
import com.fieldju.commons.EnvUtils;
import com.nike.cerberus.client.CerberusClient;
import com.nike.cerberus.client.CerberusServerApiException;
import com.nike.cerberus.client.CerberusServerException;
import com.nike.cerberus.client.model.CerberusListFilesResponse;
import com.nike.cerberus.client.model.CerberusListResponse;
import com.nike.cerberus.client.model.CerberusResponse;
Expand Down Expand Up @@ -108,7 +107,7 @@ public void test_client_secret_functionality() {
// confirm secret is deleted
try {
cerberusClient.read(sdbFullSecretPath);
} catch (CerberusServerException cse) {
} catch (CerberusServerApiException cse) {
assertEquals(404, cse.getCode());
}
}
Expand Down

0 comments on commit a22e8ad

Please sign in to comment.