diff options
Diffstat (limited to 'conductor')
-rw-r--r-- | conductor/conductor/api/adapters/aaf/aaf_authentication.py | 5 | ||||
-rw-r--r-- | conductor/pom.xml | 4 |
2 files changed, 3 insertions, 6 deletions
diff --git a/conductor/conductor/api/adapters/aaf/aaf_authentication.py b/conductor/conductor/api/adapters/aaf/aaf_authentication.py index f669ba4..e088024 100644 --- a/conductor/conductor/api/adapters/aaf/aaf_authentication.py +++ b/conductor/conductor/api/adapters/aaf/aaf_authentication.py @@ -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: diff --git a/conductor/pom.xml b/conductor/pom.xml index bfcffd4..9d21f26 100644 --- a/conductor/pom.xml +++ b/conductor/pom.xml @@ -21,13 +21,13 @@ <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> |