alnzng commented on code in PR #122:
URL: https://github.com/apache/flink-agents/pull/122#discussion_r2290096877
##########
python/flink_agents/runtime/remote_execution_environment.py:
##########
@@ -133,10 +138,26 @@ class
RemoteExecutionEnvironment(AgentsExecutionEnvironment):
"""Implementation of AgentsExecutionEnvironment for execution with
DataStream."""
__env: StreamExecutionEnvironment
+ __config: LocalConfiguration
def __init__(self, env: StreamExecutionEnvironment) -> None:
"""Init method of RemoteExecutionEnvironment."""
self.__env = env
+ self.__config = LocalConfiguration()
Review Comment:
Seems both RemoteExecutionEnvironment and LocalExecutionEnvironment loads
`LocalConfiguration`, is it expected? just from `LocalConfiguration`
literally, it should be used for LocalExecutionEnvironment only.
--
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]