Do not consider 'Waiting' events as changes/actions. (#804)

This commit is contained in:
Felix Fontein
2024-02-23 19:58:40 +01:00
committed by GitHub
parent 6f5d67860c
commit 45d32d53c9
2 changed files with 6 additions and 2 deletions
+4 -2
View File
@@ -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',