Github user rmetzger commented on a diff in the pull request: https://github.com/apache/flink/pull/2425#discussion_r77173864 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/blob/BlobClient.java --- @@ -687,7 +709,17 @@ else if (response != RETURN_OKAY) { Object msg = JobManagerMessages.getRequestBlobManagerPort(); Future<Object> futureBlobPort = jobManager.ask(msg, askTimeout); + Object secureCookieMsg = JobManagerMessages.getRequestBlobManagerSecureCookie(); + Future<Object> futureSecureCookie = jobManager.ask(secureCookieMsg, askTimeout); + try { + String secureCookie = null; + Object cookie = Await.result(futureSecureCookie, askTimeout); + if(cookie instanceof String) { + secureCookie = (String) cookie; + } + LOG.info("Secure Cookie from JM: {}", secureCookie); --- End diff -- Why are you writing the cookie to the log file here?
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---