You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by al...@apache.org on 2017/08/11 10:05:46 UTC

flink git commit: [FLINK-7300] Also ignore DisconnectException in end-to-end test logs

Repository: flink
Updated Branches:
  refs/heads/master e3b27edfc -> 00d5b6222


[FLINK-7300] Also ignore DisconnectException in end-to-end test logs


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/00d5b622
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/00d5b622
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/00d5b622

Branch: refs/heads/master
Commit: 00d5b62224e9d4b701eef1ea0b016454e9c9374b
Parents: e3b27ed
Author: Aljoscha Krettek <al...@gmail.com>
Authored: Fri Aug 11 12:04:42 2017 +0200
Committer: Aljoscha Krettek <al...@gmail.com>
Committed: Fri Aug 11 12:05:20 2017 +0200

----------------------------------------------------------------------
 test-infra/end-to-end-test/common.sh | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/00d5b622/test-infra/end-to-end-test/common.sh
----------------------------------------------------------------------
diff --git a/test-infra/end-to-end-test/common.sh b/test-infra/end-to-end-test/common.sh
index 9cf5e7b..dea80fa 100644
--- a/test-infra/end-to-end-test/common.sh
+++ b/test-infra/end-to-end-test/common.sh
@@ -69,6 +69,7 @@ function stop_cluster {
       | grep -v "RetriableCommitFailedException" \
       | grep -v "NoAvailableBrokersException" \
       | grep -v "Async Kafka commit failed" \
+      | grep -v "DisconnectException" \
       | grep -iq "error"; then
     echo "Found error in log files:"
     cat $FLINK_DIR/log/*
@@ -78,6 +79,7 @@ function stop_cluster {
       | grep -v "RetriableCommitFailedException" \
       | grep -v "NoAvailableBrokersException" \
       | grep -v "Async Kafka commit failed" \
+      | grep -v "DisconnectException" \
       | grep -iq "exception"; then
     echo "Found exception in log files:"
     cat $FLINK_DIR/log/*