Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Catch errors raised when we try to delete objects that don't exist.
This will happen from time to time as we're calling #delete_container_objects on each worker instance. The calls to OpenShift are asynchronous so the next worker we tell to #delete_container_objects may try to delete objects that have already been removed. Additionally, this makes it difficult to track when objects have been deleted. Ideally we would scale a deployment down and have the last worker delete the deployment iteslf, but a previous worker may not have deleted the worker record by the time we tell the next worker to exit.
- Loading branch information