svn: E175002: Unexpected HTTP status 429 ‘Too Many Requests’
-
Hi,
We have plugins in the WordPress plugin repository, and we regularly do code updates.
We have an issue for some weeks with the SVN server.
When we try to commit the tag creation this error occurs:svn: E175002: Commit failed (details follow): svn: E175002: Unexpected HTTP status 429 'Too Many Requests'
The overall process is done by a script from our deployment process.
Here is what the script does (I have removed custom code to make it cleaner and keep only the communication with the SVN repo):# Checkout svn checkout --depth empty --username $SVN_USERNAME --password $SVN_PASSWORD $SVN_REPOSITORY $TMP_FOLDER svn update $TMP_FOLDER/trunk svn update --set-depth empty $TMP_FOLDER/tags ... svn add ... svn rm ... ... svn ci --username $SVN_USERNAME --password $SVN_PASSWORD -m "Updating to version $TAG" $TMP_FOLDER svn cp "$TMP_FOLDER/trunk" "$TMP_FOLDER/tags/$TAG" svn ci --username $SVN_USERNAME --password $SVN_PASSWORD -m "Tagging version $TAG" $TMP_FOLDER
The errors is thrown just after the latest command line.
We’ve tried to wait a little bit after the first CI but still have the problem.
Each time we have to manually create the tag.We have the problem on all our plugins and it occurs even if we don’t have made other svn update for days.
We only do 3 requests to the svn server, a checkout, a commit for the modifications in the trunk and the last commit to tag the version.Anyone else have this issue?
Does the svn server have request throttling?Best regards
- The topic ‘svn: E175002: Unexpected HTTP status 429 ‘Too Many Requests’’ is closed to new replies.