mirror of
https://github.com/ansible-collections/community.docker.git
synced 2025-12-16 03:52:05 +00:00
Do not consider 'Waiting' events as changes/actions. (#804)
This commit is contained in:
parent
6f5d67860c
commit
45d32d53c9
2
changelogs/fragments/804-compose-v2-waiting.yml
Normal file
2
changelogs/fragments/804-compose-v2-waiting.yml
Normal file
@ -0,0 +1,2 @@
|
||||
bugfixes:
|
||||
- "docker_compose_v2 - do not consider a ``Waiting`` event as an action/change (https://github.com/ansible-collections/community.docker/pull/804)."
|
||||
@ -38,7 +38,6 @@ DOCKER_STATUS_DONE = frozenset((
|
||||
DOCKER_STATUS_WORKING = frozenset((
|
||||
'Creating',
|
||||
'Starting',
|
||||
'Waiting',
|
||||
'Restarting',
|
||||
'Stopping',
|
||||
'Killing',
|
||||
@ -57,7 +56,10 @@ DOCKER_STATUS_PULL = frozenset((
|
||||
DOCKER_STATUS_ERROR = frozenset((
|
||||
'Error',
|
||||
))
|
||||
DOCKER_STATUS = frozenset(DOCKER_STATUS_DONE | DOCKER_STATUS_WORKING | DOCKER_STATUS_PULL | DOCKER_STATUS_ERROR)
|
||||
DOCKER_STATUS_WAITING = frozenset((
|
||||
'Waiting',
|
||||
))
|
||||
DOCKER_STATUS = frozenset(DOCKER_STATUS_DONE | DOCKER_STATUS_WORKING | DOCKER_STATUS_PULL | DOCKER_STATUS_ERROR | DOCKER_STATUS_WAITING)
|
||||
|
||||
DOCKER_PULL_PROGRESS_DONE = frozenset((
|
||||
'Already exists',
|
||||
|
||||
Loading…
Reference in New Issue
Block a user