We are running multiple scripts from one user account to clone multiple repositories in parallel.
When we cloning 10 repos together, it's working fine. When we try cloning 15 repos together, it lock out stash user and gives below error.
Cloning 'xyz' mirror
Fetching 'xyz'
Cloning into bare repository '/lhome/abcd/tmp/xyz1'...
Cloning into bare repository '/lhome/abcd/tmp/xyz2'...
Cloning into bare repository '/lhome/abcd/tmp/xyz3'...
Cloning into bare repository '/lhome/abcd/tmp/xyz4'...
fatal: Authentication failed
We have integration with crowd for user authentication.
Thanks !!
This is caused by the way git authenticates over HTTP. For any request, git will do the following:
In your case, I think the same user is trying clone multiple repositories in parallel and the 'failed authentication count' exceeds your configured CAPTCHA limit.
There are a couple of ways to get around the problem:
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.