From f17031a9f6bf4913aa3ba86f4322b9ebc2183a87 Mon Sep 17 00:00:00 2001 From: dglFromAtt Date: Fri, 24 Aug 2018 16:28:20 -0400 Subject: [PATCH] Fix mistaken default Change-Id: I44739c3d5f51444e88a69ded31edfb69f87b73bf Signed-off-by: dglFromAtt Issue-ID: DMAAP-647 --- pom.xml | 2 +- src/main/java/org/onap/dmaap/dbcapi/aaf/AafService.java | 2 +- version.properties | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index bacee33..3a131b8 100644 --- a/pom.xml +++ b/pom.xml @@ -350,7 +350,7 @@ UTF-8 9.3.9.v20160517 0.0.1 - 1.0.13-SNAPSHOT + 1.0.14-SNAPSHOT 0.7.7.201606060606 3.2 diff --git a/src/main/java/org/onap/dmaap/dbcapi/aaf/AafService.java b/src/main/java/org/onap/dmaap/dbcapi/aaf/AafService.java index 68fca79..781932b 100644 --- a/src/main/java/org/onap/dmaap/dbcapi/aaf/AafService.java +++ b/src/main/java/org/onap/dmaap/dbcapi/aaf/AafService.java @@ -84,7 +84,7 @@ public class AafService extends BaseLoggingClass { private void initAafService( ServiceType t ) { DmaapConfig p = (DmaapConfig)DmaapConfig.getConfig(); - useAAF= "true".equalsIgnoreCase(p.getProperty("UseAAF", "true")); + useAAF= "true".equalsIgnoreCase(p.getProperty("UseAAF", "false")); ctype = t; aaf = new AafConnection( getCred( true ) ); diff --git a/version.properties b/version.properties index 3ed3b8f..8add583 100644 --- a/version.properties +++ b/version.properties @@ -27,7 +27,7 @@ major=1 minor=0 -patch=13 +patch=14 base_version=${major}.${minor}.${patch} # Release must be completed with git revision # in Jenkins -- 2.16.6