diff options
| author | Gordon Sim <gsim@apache.org> | 2010-01-28 08:37:37 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2010-01-28 08:37:37 +0000 |
| commit | 507ee7269a2f379e51cd6667db0d0892c159568f (patch) | |
| tree | f55ff48efa8e2b43c3bf3e0f1d4003b4d7fbe88f /cpp/src/tests/qpid_stream.cpp | |
| parent | 3a0f29176a97d2091234f5067ac83640be019e1c (diff) | |
| download | qpid-python-507ee7269a2f379e51cd6667db0d0892c159568f.tar.gz | |
QPID-664: change format of connection options string to match address options; make open() a non-static method.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@904000 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/qpid_stream.cpp')
| -rw-r--r-- | cpp/src/tests/qpid_stream.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/tests/qpid_stream.cpp b/cpp/src/tests/qpid_stream.cpp index 8195bf390e..3cc8e70809 100644 --- a/cpp/src/tests/qpid_stream.cpp +++ b/cpp/src/tests/qpid_stream.cpp @@ -72,7 +72,8 @@ struct Client : Runnable void run() { try { - Connection connection = Connection::open(opts.url); + Connection connection; + connection.open(opts.url); Session session = connection.newSession(); doWork(session); session.close(); |
