From bcda0b2e20bb3fe0482d694ca7f08a3b32f2752c Mon Sep 17 00:00:00 2001 From: Ask Solem Date: Tue, 15 Apr 2014 17:25:03 +0100 Subject: [PATCH] Adds Connection.qos_semantics_matches_spec --- kombu/connection.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/kombu/connection.py b/kombu/connection.py index 1ebdd4f3..85b8f5e9 100644 --- a/kombu/connection.py +++ b/kombu/connection.py @@ -731,6 +731,10 @@ class Connection(object): def __exit__(self, *args): self.release() + @property + def qos_semantics_matches_spec(self): + return self.transport.qos_semantics_matches_spec(self.connection) + @property def connected(self): """Return true if the connection has been established."""