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/21 13:51:00 UTC

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

Repository: flink
Updated Branches:
  refs/heads/master a3143bcb0 -> 9077e5169


[FLINK-7300] Also ignore AskTimeoutException 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/9077e516
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/9077e516
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/9077e516

Branch: refs/heads/master
Commit: 9077e5169d28efc701ca49cbc6a30df1e33b416b
Parents: a3143bc
Author: Aljoscha Krettek <al...@gmail.com>
Authored: Mon Aug 21 15:50:18 2017 +0200
Committer: Aljoscha Krettek <al...@gmail.com>
Committed: Mon Aug 21 15:50:35 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/9077e516/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 dea80fa..26e1522 100644
--- a/test-infra/end-to-end-test/common.sh
+++ b/test-infra/end-to-end-test/common.sh
@@ -70,6 +70,7 @@ function stop_cluster {
       | grep -v "NoAvailableBrokersException" \
       | grep -v "Async Kafka commit failed" \
       | grep -v "DisconnectException" \
+      | grep -v "AskTimeoutException" \
       | grep -iq "error"; then
     echo "Found error in log files:"
     cat $FLINK_DIR/log/*
@@ -80,6 +81,7 @@ function stop_cluster {
       | grep -v "NoAvailableBrokersException" \
       | grep -v "Async Kafka commit failed" \
       | grep -v "DisconnectException" \
+      | grep -v "AskTimeoutException" \
       | grep -iq "exception"; then
     echo "Found exception in log files:"
     cat $FLINK_DIR/log/*