You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by jo...@apache.org on 2014/03/19 21:12:13 UTC

git commit: [#6701] [fixup] Added logging for auth due to missing username

Repository: incubator-allura
Updated Branches:
  refs/heads/cj/6701 49bb63dd3 -> d0364df61


[#6701] [fixup] Added logging for auth due to missing username

Signed-off-by: Cory Johns <cj...@slashdotmedia.com>


Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/d0364df6
Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/d0364df6
Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/d0364df6

Branch: refs/heads/cj/6701
Commit: d0364df61d1cee72dede13b37f52af3d34fd267b
Parents: 49bb63d
Author: Cory Johns <cj...@slashdotmedia.com>
Authored: Wed Mar 19 20:12:09 2014 +0000
Committer: Cory Johns <cj...@slashdotmedia.com>
Committed: Wed Mar 19 20:12:09 2014 +0000

----------------------------------------------------------------------
 scripts/ApacheAccessHandler.py | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/d0364df6/scripts/ApacheAccessHandler.py
----------------------------------------------------------------------
diff --git a/scripts/ApacheAccessHandler.py b/scripts/ApacheAccessHandler.py
index 6575a6f..bbd0929 100644
--- a/scripts/ApacheAccessHandler.py
+++ b/scripts/ApacheAccessHandler.py
@@ -91,6 +91,7 @@ def check_repo_path(req):
 
 
 def check_authentication(req):
+    log(req, "checking auth for: %s" % req.user)
     auth_url = req.get_options().get('ALLURA_AUTH_URL', 'https://127.0.0.1/auth/do_login')
     r = requests.post(auth_url, allow_redirects=False, data={
         'username': req.user,