Solving 409 conflict error in Eclipse
November 17, 2010 2 Comments
Today more than couple of hours I was breaking my head for this 409 conflict error eclipse, while working with google-app-engine. The error appeared as:
Unable to update app: Error posting to URL : http://appengine.google.com/api/appversion/create?app_id=mybdaywisherversion=1
409 conflict
Another transaction for this user is already in progress for this app and major version. That user can undo the transaction with appcfg.py’s “rollback” command.
After a long browsing and experiment, I got the solution to be like this:
Open Command Prompt and change the location to your application directory.
Then run appcfg file that is resides in the eclipse plugin directory with rollback command. I have installed my eclipse in C: only, so my command goes like this:
“C:\eclipse\plugins\com.google.appengine.eclipse.sdkbundle.1.3.7_1.3.7.v201008311427\appengine-java-sdk-1.3.7\bin\appcfg” rollback war
After this, everything worked fine.



Recent Comments