You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ch...@apache.org on 2018/09/06 08:37:15 UTC

[flink] branch master updated: [FLINK-10283][runtime] Remove misleading logging in FileCache

This is an automated email from the ASF dual-hosted git repository.

chesnay pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/master by this push:
     new 5990399  [FLINK-10283][runtime] Remove misleading logging in FileCache
5990399 is described below

commit 5990399ac5d6c16b136892af84fb54300126495c
Author: zentol <ch...@apache.org>
AuthorDate: Wed Sep 5 12:52:29 2018 +0200

    [FLINK-10283][runtime] Remove misleading logging in FileCache
---
 .../src/main/java/org/apache/flink/runtime/filecache/FileCache.java      | 1 -
 1 file changed, 1 deletion(-)

diff --git a/flink-runtime/src/main/java/org/apache/flink/runtime/filecache/FileCache.java b/flink-runtime/src/main/java/org/apache/flink/runtime/filecache/FileCache.java
index 0019acf..041fea0 100644
--- a/flink-runtime/src/main/java/org/apache/flink/runtime/filecache/FileCache.java
+++ b/flink-runtime/src/main/java/org/apache/flink/runtime/filecache/FileCache.java
@@ -226,7 +226,6 @@ public class FileCache {
 			Set<ExecutionAttemptID> jobRefCounter = jobRefHolders.get(jobId);
 
 			if (jobRefCounter == null || jobRefCounter.isEmpty()) {
-				LOG.warn("improper use of releaseJob() without a matching number of createTmpFiles() calls for jobId " + jobId);
 				return;
 			}