diff options
author | Alan Conway <aconway@apache.org> | 2007-06-27 00:29:14 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2007-06-27 00:29:14 +0000 |
commit | 93ac8958d4561b6b3e520b181abc859eb5428edd (patch) | |
tree | c1fc404ac337ede90ae4f1f17474b70b38238135 /cpp | |
parent | d032f5584b0f1de890844a2796d6ba158b011fca (diff) | |
download | qpid-python-93ac8958d4561b6b3e520b181abc859eb5428edd.tar.gz |
Fix shutdown race in Connector.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@550996 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/qpid/client/Connector.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/client/Connector.cpp b/cpp/src/qpid/client/Connector.cpp index 99f2d6ece1..ef7c9ce7fd 100644 --- a/cpp/src/qpid/client/Connector.cpp +++ b/cpp/src/qpid/client/Connector.cpp @@ -47,7 +47,7 @@ Connector::Connector( { } Connector::~Connector(){ - receiver.join(); + close(); } void Connector::connect(const std::string& host, int port){ |