[core] Add tags parameter to wake_up() (#15500)

Signed-off-by: Eric <erictang000@gmail.com>
This commit is contained in:
Eric Tang
2025-04-02 01:59:27 -07:00
committed by GitHub
parent 90969fb39a
commit ddb94c2605
18 changed files with 144 additions and 71 deletions

View File

@@ -282,7 +282,7 @@ class EngineClient(ABC):
...
@abstractmethod
async def wake_up(self) -> None:
async def wake_up(self, tags: Optional[list[str]] = None) -> None:
"""Wake up the engine"""
...