From c00efb8dd16b5a38c2ffb64116f327063e0a07ed Mon Sep 17 00:00:00 2001 From: Roger Hu Date: Thu, 9 Jan 2014 00:49:59 +0000 Subject: [PATCH] Dependency on get_username in order to generate accounts with social auth. --- src/sentry/conf/server.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sentry/conf/server.py b/src/sentry/conf/server.py index d56902a6fe3b..84a3d4dca66a 100644 --- a/src/sentry/conf/server.py +++ b/src/sentry/conf/server.py @@ -220,6 +220,7 @@ BITBUCKET_CONSUMER_SECRET = '' SOCIAL_AUTH_PIPELINE = ( + 'social_auth.backends.pipeline.user.get_username', 'social_auth.backends.pipeline.social.social_auth_user', 'social_auth.backends.pipeline.associate.associate_by_email', 'social_auth.backends.pipeline.misc.save_status_to_session',