Repository: flink Updated Branches: refs/heads/master ce04965b6 -> 81839d7e3
[FLINK-9677][rest] Simplify logging Project: http://git-wip-us.apache.org/repos/asf/flink/repo Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/81839d7e Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/81839d7e Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/81839d7e Branch: refs/heads/master Commit: 81839d7e316e17bd3b1705accaa5c5b6e219a17c Parents: ce04965 Author: zentol <[email protected]> Authored: Thu Jun 28 08:53:24 2018 +0200 Committer: zentol <[email protected]> Committed: Thu Jun 28 08:53:24 2018 +0200 ---------------------------------------------------------------------- .../main/java/org/apache/flink/runtime/rest/FileUploadHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flink/blob/81839d7e/flink-runtime/src/main/java/org/apache/flink/runtime/rest/FileUploadHandler.java ---------------------------------------------------------------------- diff --git a/flink-runtime/src/main/java/org/apache/flink/runtime/rest/FileUploadHandler.java b/flink-runtime/src/main/java/org/apache/flink/runtime/rest/FileUploadHandler.java index aa21ddf..3341e32 100644 --- a/flink-runtime/src/main/java/org/apache/flink/runtime/rest/FileUploadHandler.java +++ b/flink-runtime/src/main/java/org/apache/flink/runtime/rest/FileUploadHandler.java @@ -178,7 +178,7 @@ public class FileUploadHandler extends SimpleChannelInboundHandler<HttpObject> { currentHttpPostRequestDecoder.getBodyHttpDatas().clear(); } catch (HttpPostRequestDecoder.NotEnoughDataDecoderException ned) { // this method always fails if not all chunks were offered to the decoder yet - LOG.debug("Error while resetting {}.", getClass(), ned); + LOG.debug("Error while resetting handler.", ned); } currentHttpPostRequestDecoder.destroy(); currentHttpPostRequestDecoder = null;
