Source code for harp_apps.proxy.settings.liveness.inherit

from typing import Literal

from .base import BaseLiveness, BaseLivenessSettings


[docs] class InheritLivenessSettings(BaseLivenessSettings): type: Literal["inherit"] = "inherit"
[docs] class InheritLiveness(BaseLiveness[InheritLivenessSettings]): """This is a placeholder for inheriting liveness, the parent stateful object will replace it. We do not need to implement the BaseLiveness interface, as it won't exist anymore once everything is setup.""" settings: InheritLivenessSettings