diff options
author | Robert Greig <rgreig@apache.org> | 2007-03-01 15:09:17 +0000 |
---|---|---|
committer | Robert Greig <rgreig@apache.org> | 2007-03-01 15:09:17 +0000 |
commit | ef2e26031e8de47461a8653ecb764019fe4b603e (patch) | |
tree | f7eae59523a3f7d80bff774b1263abac2e58e04d /cpp/tests/client_test.cpp | |
parent | 93d3d76cdc825cb717d781f3c9d0fc2549d00024 (diff) | |
download | qpid-python-ef2e26031e8de47461a8653ecb764019fe4b603e.tar.gz |
(Patch submitted by Rupert Smith) Small changes to use virtual hosts, merged back in from perftesting_persistent branch.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@513371 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/tests/client_test.cpp')
-rw-r--r-- | cpp/tests/client_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/tests/client_test.cpp b/cpp/tests/client_test.cpp index 9534fdcecb..f869cf4860 100644 --- a/cpp/tests/client_test.cpp +++ b/cpp/tests/client_test.cpp @@ -68,7 +68,7 @@ int main(int argc, char**) Connection con(argc > 1); string host("localhost"); - con.open(host); + con.open(host, 5672, "guest", "guest", "/test"); std::cout << "Opened connection." << std::endl; //Create and open a channel on the connection through which |