diff options
| author | Alan Conway <aconway@apache.org> | 2010-04-13 19:24:17 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2010-04-13 19:24:17 +0000 |
| commit | ea537ba1249b3ebd0e1d37dd187d558ad7757258 (patch) | |
| tree | f21edf114c26d58383d8ef414a8c1f3d2628709a /qpid/cpp/src/tests/qpid_cpp_benchmark | |
| parent | 217a4d44860504ecd9749475872e1a716d918316 (diff) | |
| download | qpid-python-ea537ba1249b3ebd0e1d37dd187d558ad7757258.tar.gz | |
Update qpid_cpp_benchmark for change in python API exceptions.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@933755 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/qpid_cpp_benchmark')
| -rwxr-xr-x | qpid/cpp/src/tests/qpid_cpp_benchmark | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/qpid_cpp_benchmark b/qpid/cpp/src/tests/qpid_cpp_benchmark index 0a7aeb1cdc..9ee29142a3 100755 --- a/qpid/cpp/src/tests/qpid_cpp_benchmark +++ b/qpid/cpp/src/tests/qpid_cpp_benchmark @@ -88,7 +88,7 @@ def delete_queues(queues, broker): c.open() for q in queues: try: s = c.session().sender("%s;{delete:always}"%(q)) - except qpid.messaging.exceptions.SendError:pass # Ignore "no such queue" + except qpid.messaging.exceptions.NotFound: pass # Ignore "no such queue" c.close() def print_output(senders, receivers, want_header): |
