mirror of
https://github.com/ansible-collections/community.docker.git
synced 2026-07-29 11:55:04 +00:00
Do not consider 'Waiting' events as changes/actions. (#804)
This commit is contained in:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user