diff options
author | Kenneth Anthony Giusti <kgiusti@apache.org> | 2012-05-01 13:58:06 +0000 |
---|---|---|
committer | Kenneth Anthony Giusti <kgiusti@apache.org> | 2012-05-01 13:58:06 +0000 |
commit | 608cc9a199f31487ac290b03dfbc6d90dfaf9e06 (patch) | |
tree | 4417b9eeb8708223b66081121a35ac45aecead8a /qpid/cpp/src/tests/cluster_test_logs.py | |
parent | 9b29a602435ffb85517a2b6989dc0018b86c10b9 (diff) | |
download | qpid-python-608cc9a199f31487ac290b03dfbc6d90dfaf9e06.tar.gz |
QPID-3963: fix test, add cluster log filters for link and broker state
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1332659 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/cluster_test_logs.py')
-rwxr-xr-x | qpid/cpp/src/tests/cluster_test_logs.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/qpid/cpp/src/tests/cluster_test_logs.py b/qpid/cpp/src/tests/cluster_test_logs.py index 3c7e8e8020..003d82c619 100755 --- a/qpid/cpp/src/tests/cluster_test_logs.py +++ b/qpid/cpp/src/tests/cluster_test_logs.py @@ -60,11 +60,13 @@ def filter_log(log): 'task late', 'task overran', 'warning CLOSING .* unsent data', - 'Inter-broker link ', + 'Inter-broker link ', # ignore link state changes + 'Updated link key from ', # ignore link state changes 'Running in a cluster, marking store', 'debug Sending keepalive signal to watchdog', # Watchdog timer thread 'last broker standing joined by 1 replicas, updating queue policies.', - 'Connection .* timed out: closing' # heartbeat connection close + 'Connection .* timed out: closing', # heartbeat connection close + "org.apache.qpid.broker:bridge:" # ignore bridge index ]) # Regex to match a UUID uuid='\w\w\w\w\w\w\w\w-\w\w\w\w-\w\w\w\w-\w\w\w\w-\w\w\w\w\w\w\w\w\w\w\w\w' |