Add healthcheck start-interval option (#848)

This commit is contained in:
x4rd0o1Vtx
2024-05-09 21:22:06 +02:00
committed by GitHub
parent f51ca84197
commit a4a05e7fa5
5 changed files with 28 additions and 4 deletions
+2 -2
View File
@@ -348,9 +348,9 @@ def normalize_healthcheck(healthcheck, normalize_test=False):
result = dict()
# All supported healthcheck parameters
options = ('test', 'interval', 'timeout', 'start_period', 'retries')
options = ('test', 'interval', 'timeout', 'start_period', 'start_interval', 'retries')
duration_options = ('interval', 'timeout', 'start_period')
duration_options = ('interval', 'timeout', 'start_period', 'start_interval')
for key in options:
if key in healthcheck: