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/13 15:41:11 UTC

[11/12] flink git commit: [hotfix] ignore a warning from the error check of the S3 e2e tests

[hotfix] ignore a warning from the error check of the S3 e2e tests


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

Branch: refs/heads/master
Commit: ab2b9f8f9629cf33135b923fd81ee28a4ea8b8bd
Parents: 613fc44
Author: Nico Kruber <ni...@data-artisans.com>
Authored: Fri Nov 10 14:04:29 2017 +0100
Committer: Aljoscha Krettek <al...@gmail.com>
Committed: Mon Nov 13 16:37:51 2017 +0100

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


http://git-wip-us.apache.org/repos/asf/flink/blob/ab2b9f8f/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 35d1d7e..8dbf0a0 100644
--- a/test-infra/end-to-end-test/common.sh
+++ b/test-infra/end-to-end-test/common.sh
@@ -86,6 +86,7 @@ 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 "jvm-exit-on-fatal-error" \
+      | grep -v '^INFO:.*AWSErrorCode=\[400 Bad Request\].*ServiceEndpoint=\[https://.*\.s3\.amazonaws\.com\].*RequestType=\[HeadBucketRequest\]' \
       | grep -iq "error"; then
     echo "Found error in log files:"
     cat $FLINK_DIR/log/*
@@ -99,6 +100,7 @@ function stop_cluster {
       | grep -v "AskTimeoutException" \
       | 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 -iq "exception"; then
     echo "Found exception in log files:"
     cat $FLINK_DIR/log/*