diff options
Diffstat (limited to 'python/qpid/client.py')
-rw-r--r-- | python/qpid/client.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/qpid/client.py b/python/qpid/client.py index 5734873c6f..f0d7935283 100644 --- a/python/qpid/client.py +++ b/python/qpid/client.py @@ -138,6 +138,9 @@ class ClientDelegate(Delegate): def channel_close(self, ch, msg): ch.close(msg) + def session_closed(self, ch, msg): + ch.close(msg) + def connection_close(self, ch, msg): self.client.peer.close(msg) |