Repository: flink Updated Branches: refs/heads/master f853f3359 -> 3e333793c
[FLINK-7810] Add more excludes in end-to-end tests With the switch to Akka 2.4 this message can crop up in the logs, it's only a warning, though. Project: http://git-wip-us.apache.org/repos/asf/flink/repo Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/3e333793 Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/3e333793 Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/3e333793 Branch: refs/heads/master Commit: 3e333793cc9164e2d2154934e9d123036a553ec8 Parents: f853f33 Author: Aljoscha Krettek <[email protected]> Authored: Fri Oct 6 14:33:43 2017 +0200 Committer: Aljoscha Krettek <[email protected]> Committed: Mon Oct 16 10:28:11 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/3e333793/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 26e1522..6d1e963 100644 --- a/test-infra/end-to-end-test/common.sh +++ b/test-infra/end-to-end-test/common.sh @@ -71,6 +71,7 @@ function stop_cluster { | grep -v "Async Kafka commit failed" \ | grep -v "DisconnectException" \ | grep -v "AskTimeoutException" \ + | grep -v "WARN akka.remote.transport.netty.NettyTransport" \ | grep -iq "error"; then echo "Found error in log files:" cat $FLINK_DIR/log/* @@ -82,6 +83,7 @@ function stop_cluster { | grep -v "Async Kafka commit failed" \ | grep -v "DisconnectException" \ | grep -v "AskTimeoutException" \ + | grep -v "WARN akka.remote.transport.netty.NettyTransport" \ | grep -iq "exception"; then echo "Found exception in log files:" cat $FLINK_DIR/log/*
