> I have my app using the default pipeline and works great. I want to change
> the way I am setting the username (currenlty via signal handler) to do this
> from a custom pipeline. So I am starting out by setting
> SOCIAL_AUTH_PIPELINE = ( ... ) and before I go making changes I have it set
> to the same as the default pipeline and it fails. If I comment this out and
> use the default (do not override) it works. I am having a time figuring out
> what is failing. Any suggestions?
> ## adding this in my settings.py fails
> SOCIAL_AUTH_PIPELINE = (
> 'social_auth.backends.pipeline.social.social_auth_user',
> 'social_auth.backends.pipeline.associate.associate_by_email',
> 'social_auth.backends.pipeline.user.get_username',
> 'social_auth.backends.pipeline.user.create_user',
> 'social_auth.backends.pipeline.social.associate_user',
> 'social_auth.backends.pipeline.social.load_extra_data',
> 'social_auth.backends.pipeline.user.update_user_details',
> )
--