diff options
Diffstat (limited to 'python/qpid/spec.py')
-rw-r--r-- | python/qpid/spec.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/qpid/spec.py b/python/qpid/spec.py index 3febab7e09..3cb5f0ca25 100644 --- a/python/qpid/spec.py +++ b/python/qpid/spec.py @@ -208,7 +208,7 @@ class Method(Metadata): self.response = False def is_l4_command(self): - return self.klass.name not in ["execution", "channel", "connection"] + return self.klass.name not in ["execution", "channel", "connection", "session"] def arguments(self, *args, **kwargs): nargs = len(args) + len(kwargs) |