summaryrefslogtreecommitdiff
path: root/qpid/python
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-03-19 16:12:51 +0000
committerAlan Conway <aconway@apache.org>2007-03-19 16:12:51 +0000
commit33dc32c3fadfdcbf21d21a39375a7442bcc015d3 (patch)
tree02a78986cbfa5e052cbfb335a88fefa400f5d947 /qpid/python
parent5e2835f140a383743259e34aa575bcc0b64c8271 (diff)
downloadqpid-python-33dc32c3fadfdcbf21d21a39375a7442bcc015d3.tar.gz
* python/qpid/client.py (Client.__init__): Use "/" as default vhost.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@519988 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python')
-rw-r--r--qpid/python/java_failing.txt21
-rw-r--r--qpid/python/qpid/client.py2
2 files changed, 3 insertions, 20 deletions
diff --git a/qpid/python/java_failing.txt b/qpid/python/java_failing.txt
index f85e46beca..c13b40a42c 100644
--- a/qpid/python/java_failing.txt
+++ b/qpid/python/java_failing.txt
@@ -1,19 +1,2 @@
-tests.basic.BasicTests.test_ack
-tests.basic.BasicTests.test_cancel
-tests.basic.BasicTests.test_consume_exclusive
-tests.basic.BasicTests.test_consume_no_local
-tests.basic.BasicTests.test_consume_queue_errors
-tests.basic.BasicTests.test_consume_unique_consumers
-tests.basic.BasicTests.test_get
-tests.basic.BasicTests.test_qos_prefetch_count
-tests.basic.BasicTests.test_qos_prefetch_size
-tests.basic.BasicTests.test_recover_requeue
-tests.exchange.RecommendedTypesRuleTests.testTopic
-tests.exchange.RequiredInstancesRuleTests.testAmqTopic
-tests.queue.QueueTests.test_declare_exclusive
-tests.queue.QueueTests.test_declare_passive
-tests.queue.QueueTests.test_delete_ifempty
-tests.queue.QueueTests.test_delete_ifunused
-tests.queue.QueueTests.test_delete_simple
-tests.queue.QueueTests.test_purge
-tests.testlib.TestBaseTest.testMessageProperties
+tests_0-8.exchange.RecommendedTypesRuleTests.testTopic
+tests_0-8.exchange.RequiredInstancesRuleTests.testAmqTopic
diff --git a/qpid/python/qpid/client.py b/qpid/python/qpid/client.py
index 3083cd4933..20d1093878 100644
--- a/qpid/python/qpid/client.py
+++ b/qpid/python/qpid/client.py
@@ -43,7 +43,7 @@ class Client:
self.vhost = vhost
if self.vhost == None:
- self.vhost = self.host
+ self.vhost = "/"
self.queues = {}
self.lock = threading.Lock()