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 f0d7935283..37df8f272a 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_ack(self, ch, msg): + pass + def session_closed(self, ch, msg): ch.close(msg) |