rkhachatryan commented on code in PR #24292: URL: https://github.com/apache/flink/pull/24292#discussion_r1486789947
########## flink-rpc/flink-rpc-core/src/main/java/org/apache/flink/runtime/rpc/MainThreadValidatorUtil.java: ########## @@ -45,11 +45,13 @@ public MainThreadValidatorUtil(RpcEndpoint endpoint) { public void enterMainThread() { assert (endpoint.currentMainThread.compareAndSet(null, Thread.currentThread())) : "The RpcEndpoint has concurrent access from " + endpoint.currentMainThread.get(); + endpoint.beforeInvocation(); Review Comment: When I remove it, I get log lines like this without a job ID: ``` [ ] ExecutionGraph [flink-pekko.actor.default-dispatcher-6] INFO Source: Custom Source -> Timestamps/Watermarks -> transform-1-forward -> Sink: Unnamed (1/4) (2dae9a492649d761d992295551f74d3c_cbc357ccb763df2852fee8c4fc7d55f2_0_0) switched from SCHEDULED to DEPLOYING. ``` -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org