Google App Engine Fix “Another transaction by user acct is already in progress”

If an update for Google App Engine doesn’t complete it will cause an error and not allow you to upload new updates the error code is similar to: Another transaction by user acct is already in progress for this app and major version. That user can undo the transaction with appcfg.py’s “rollback” command.

Rollback Google App Update

Google App Engine Error Code

google app engine in progress
  • Create a new batch file
  • Copy the code below, make sure you change the email and appnamehere to your appname
"C:\Program Files\Python26\python" "C:\Program Files\Google\google_appengine\appcfg.py" -verbose --no_cookies --email=email@gmail.com --passin rollback appnamehere
  • Finally run the batch file and the update will be rolled back
google app engine rollback

5 Comments (Newest on top)

  1. Yes this has helped me–the script didn’t work because of a deprecation error, but the basic idea was very helpful. Thank you for writing this post!:-)

  2. Sean says:

    Thank you, it’s very helpful

  3. Samantha says:

    Thanks soo much! It totally saved my team :D As I was wondering how to implement it..

  4. Another way to fix this is incrementing the version number in your app.yaml file. Maybe not the prettiest solution, but faster ;)

Leave a Reply