slfan1989 commented on code in PR #22028: URL: https://github.com/apache/flink/pull/22028#discussion_r1160653403
########## flink-yarn/src/main/java/org/apache/flink/yarn/YarnClusterDescriptor.java: ########## @@ -1265,11 +1266,9 @@ private ApplicationReport startAppMaster( if (appState != lastAppState) { LOG.info("Deploying cluster, current state " + appState); } - if (System.currentTimeMillis() - lastLogTime > 60000) { - lastLogTime = System.currentTimeMillis(); + if (System.currentTimeMillis() - startTime > 60000) { LOG.info( - "Deployment took more than {} seconds. Please check if the requested resources are available in the YARN cluster", - (lastLogTime - startTime) / 1000); + "Deployment took more than 60 seconds. Please check if the requested resources are available in the YARN cluster"); Review Comment: @1996fanrui @huwh Sorry, I didn't see the feedback question. When I rebase the master code later, I will be more careful. -- 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