diff options
Diffstat (limited to 'cpp/src/tests/qpid_cpp_benchmark')
| -rwxr-xr-x | cpp/src/tests/qpid_cpp_benchmark | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/tests/qpid_cpp_benchmark b/cpp/src/tests/qpid_cpp_benchmark index 0a7aeb1cdc..9ee29142a3 100755 --- a/cpp/src/tests/qpid_cpp_benchmark +++ b/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): |
