This is an automated email from the ASF dual-hosted git repository.

dgrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk.git


The following commit(s) were added to refs/heads/master by this push:
     new 4e25ada  don't log a uuid of the username portion of basic auth info 
(#5142)
4e25ada is described below

commit 4e25ada99c00875564c4e5aa51677b20d67afd66
Author: David Grove <[email protected]>
AuthorDate: Wed Jul 21 13:32:09 2021 -0400

    don't log a uuid of the username portion of basic auth info (#5142)
---
 .../apache/openwhisk/core/controller/BasicAuthenticationDirective.scala  | 1 -
 1 file changed, 1 deletion(-)

diff --git 
a/core/controller/src/main/scala/org/apache/openwhisk/core/controller/BasicAuthenticationDirective.scala
 
b/core/controller/src/main/scala/org/apache/openwhisk/core/controller/BasicAuthenticationDirective.scala
index b9a4c3c..10703f0 100644
--- 
a/core/controller/src/main/scala/org/apache/openwhisk/core/controller/BasicAuthenticationDirective.scala
+++ 
b/core/controller/src/main/scala/org/apache/openwhisk/core/controller/BasicAuthenticationDirective.scala
@@ -39,7 +39,6 @@ object BasicAuthenticationDirective extends 
AuthenticationDirectiveProvider {
       Try {
         // authkey deserialization is wrapped in a try to guard against 
malformed values
         val authkey = BasicAuthenticationAuthKey(UUID(pw.username), 
Secret(pw.password))
-        logging.info(this, s"authenticate: ${authkey.uuid}")
         val future = Identity.get(authStore, authkey) map { result =>
           if (authkey == result.authkey) {
             logging.debug(this, s"authentication valid")

Reply via email to