You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, each step of the healthcheck has its own polling behavior, but the healthcheck itself is also polled, so there does seem to be some unnecessary complexity here. I think the healthcheck would essentially behave the same way if we removed the individual polling and just relied on the global polling of the healthcheck.
One difference in behavior with this approach would be that every healthcheck would run every request on each poll, even when some sort of failure case was handled on the previous poll. The current behavior is to repeat only the current action until a success state for that action is encountered. It's unclear to me whether that's a problem or not, and it may even be more appropriate to repeat the whole series of checks each time anyway.
The text was updated successfully, but these errors were encountered:
At the moment, each step of the healthcheck has its own polling behavior, but the healthcheck itself is also polled, so there does seem to be some unnecessary complexity here. I think the healthcheck would essentially behave the same way if we removed the individual polling and just relied on the global polling of the healthcheck.
One difference in behavior with this approach would be that every healthcheck would run every request on each poll, even when some sort of failure case was handled on the previous poll. The current behavior is to repeat only the current action until a success state for that action is encountered. It's unclear to me whether that's a problem or not, and it may even be more appropriate to repeat the whole series of checks each time anyway.
The text was updated successfully, but these errors were encountered: