In my CI/CD process I deploy a GAE application and then delete old versions.
Sometimes there's a conflict where a deploy is in the process of deleting a version and then a second deploy comes along and tries to delete the same version, causing an error like this:
Cannot operate on apps/my-gae-service/services/backend/versions/20200713t161545 because an operation is already in progress for apps/my-gae-service/services/core-api/versions/20200713t161545 by 642f0fbd-9633-4aeb-b1cf-71b52c9fdf45.
What is the best way to wait for all GAE operations to complete before running a command?
This could be done with dependencies between build steps but that doesn't always work because of an issue that appears to be on the GAE side. The issue is that sometimes versions deleted from one CLI command aren't totally gone even after that command is done running. I'm opening a ticket about that with Google soo.