wenjin272 commented on code in PR #32: URL: https://github.com/apache/flink-agents/pull/32#discussion_r2160972631
########## python/flink_agents/api/workflow_runner.py: ########## @@ -0,0 +1,40 @@ +from abc import ABC, abstractmethod +from collections import deque +from typing import Any, Dict +from uuid import UUID + + +class WorkflowRunner(ABC): Review Comment: Yes, user needn't and shouldn't be aware of the workflow runner. After remove the runner member of workflow class, WorkflowRunner is moved to runtime module. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
