-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for healthcheck argument start-interval #98
base: master
Are you sure you want to change the base?
Conversation
Ready for review. Have verified that tests are working locally, by running act. |
case (invalid, intervals, timeouts, startPeriods, startIntervals, retriesD) of | ||
((k, v) : _, _, _, _, _, _) -> unexpectedFlag k v | ||
(_, _ : _ : _, _, _, _, _) -> customError $ DuplicateFlagError "--interval" | ||
(_, _, _ : _ : _, _, _, _) -> customError $ DuplicateFlagError "--timeout" | ||
(_, _, _, _ : _ : _, _, _) -> customError $ DuplicateFlagError "--start-period" | ||
(_, _, _, _, _ : _ : _, _) -> customError $ DuplicateFlagError "--start-interval" | ||
(_, _, _, _, _, _ : _ : _) -> customError $ DuplicateFlagError "--retries" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mmh Haskell case
blocks scale as O(n^2)
?! Is there an alternative?
Hey there 👋 Interested in seeing this being supported by hadolint. Any plan on getting this in ? |
Any news here? This was approved, can it be merged please? |
Fixes #97