[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/97a3491f Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/97a3491f Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/97a3491f Branch: refs/heads/release-1.4 Commit: 97a3491fbde9992507d6d247c82d560dd8753a0a Parents: 3574f8b Author: Nico Kruber <[email protected]> Authored: Fri Nov 10 14:04:29 2017 +0100 Committer: Aljoscha Krettek <[email protected]> Committed: Mon Nov 13 17:41:15 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/97a3491f/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/*
