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/11/29 11:09:51 UTC

flink git commit: [FLINK-7300] Ignore more exceptions in end-to-end tests

Repository: flink
Updated Branches:
  refs/heads/master f5ec9c83e -> 8ca150f42


[FLINK-7300] Ignore more exceptions in end-to-end tests


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

Branch: refs/heads/master
Commit: 8ca150f4232a940108a5ff7de04de368eb2eb3f0
Parents: f5ec9c8
Author: Aljoscha Krettek <al...@gmail.com>
Authored: Wed Nov 29 12:09:21 2017 +0100
Committer: Aljoscha Krettek <al...@gmail.com>
Committed: Wed Nov 29 12:09:21 2017 +0100

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


http://git-wip-us.apache.org/repos/asf/flink/blob/8ca150f4/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 5cbfb3f..da8d22c 100644
--- a/test-infra/end-to-end-test/common.sh
+++ b/test-infra/end-to-end-test/common.sh
@@ -87,6 +87,8 @@ function stop_cluster {
       | grep -v  "WARN  org.apache.flink.shaded.akka.org.jboss.netty.channel.DefaultChannelPipeline" \
       | grep -v "jvm-exit-on-fatal-error" \
       | grep -v '^INFO:.*AWSErrorCode=\[400 Bad Request\].*ServiceEndpoint=\[https://.*\.s3\.amazonaws\.com\].*RequestType=\[HeadBucketRequest\]' \
+      | grep -v "RejectedExecutionException" \
+      | grep -v "An exception was thrown by an exception handler" \
       | grep -iq "error"; then
     echo "Found error in log files:"
     cat $FLINK_DIR/log/*
@@ -101,6 +103,8 @@ function stop_cluster {
       | grep -v "WARN  akka.remote.transport.netty.NettyTransport" \
       | grep -v  "WARN  org.apache.flink.shaded.akka.org.jboss.netty.channel.DefaultChannelPipeline" \
       | grep -v '^INFO:.*AWSErrorCode=\[400 Bad Request\].*ServiceEndpoint=\[https://.*\.s3\.amazonaws\.com\].*RequestType=\[HeadBucketRequest\]' \
+      | grep -v "RejectedExecutionException" \
+      | grep -v "An exception was thrown by an exception handler" \
       | grep -iq "exception"; then
     echo "Found exception in log files:"
     cat $FLINK_DIR/log/*