Remove credentials in logger 20/71720/1 1.2.4 3.0.0-ONAP
authorDileep Ranganathan <dileep.ranganathan@intel.com>
Thu, 1 Nov 2018 22:52:04 +0000 (15:52 -0700)
committerDileep Ranganathan <dileep.ranganathan@intel.com>
Thu, 1 Nov 2018 22:52:04 +0000 (15:52 -0700)
Removed log with credentials.
Upgrade version to 1.2.4

Change-Id: Ic5767f149d7cd48a8596f325d90fe5138c213c31
Issue-ID: OPTFRA-331
Signed-off-by: Dileep Ranganathan <dileep.ranganathan@intel.com>
conductor/conductor/api/adapters/aaf/aaf_authentication.py
conductor/pom.xml
pom.xml
run-dockers.sh
version.properties

index f669ba4..e088024 100644 (file)
@@ -81,16 +81,13 @@ def clear_cache():
     perm_cache.clear()
 
 def authenticate(uid, passwd):
-    # FS - trace
-    LOG.info("Authenticating username:password {} : {}: ".format(uid, passwd))
-
     aafUser = None
     username = CONF.conductor_api.username
     password = CONF.conductor_api.password
     if username == uid and password == passwd:
         aafUser = CONF.aaf_api.aaf_conductor_user
     else:
-        LOG.debug("Error Authenticating the user {} : {}: ".format(uid, passwd))
+        LOG.debug("Error Authenticating the user {} ".format(uid))
         return False
 
     try:
index bfcffd4..9d21f26 100644 (file)
 
     <parent>
         <groupId>org.onap.optf.has</groupId>
-        <version>1.2.3-SNAPSHOT</version>
+        <version>1.2.4-SNAPSHOT</version>
         <artifactId>optf-has</artifactId>
     </parent>
 
     <groupId>org.onap.optf.has</groupId>
     <artifactId>optf-has-conductor</artifactId>
-    <version>1.2.3-SNAPSHOT</version>
+    <version>1.2.4-SNAPSHOT</version>
 
     <name>optf-has-conductor</name>
     <description>Homing Allocation Service/Conductor</description>
diff --git a/pom.xml b/pom.xml
index 966a96f..f78a091 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@
     <artifactId>optf-has</artifactId>
 
     <name>optf-has</name>
-    <version>1.2.3-SNAPSHOT</version>
+    <version>1.2.4-SNAPSHOT</version>
     <description>Homing Allocation Service</description>
 
     <modules>
index edfae92..220e9bf 100755 (executable)
@@ -4,7 +4,7 @@
 
 BUILD_ARGS="--no-cache"
 ORG="onap"
-VERSION="1.2.3"
+VERSION="1.2.4"
 PROJECT="optf-has"
 DOCKER_REPOSITORY="nexus3.onap.org:10003"
 IMAGE_NAME="${DOCKER_REPOSITORY}/${ORG}/${PROJECT}"
index add6ba3..c61a792 100644 (file)
@@ -19,7 +19,7 @@
 
 major=1
 minor=2
-patch=3
+patch=4
 
 base_version=${major}.${minor}.${patch}