diff options
| author | Rafael H. Schloming <rhs@apache.org> | 2010-09-10 14:58:08 +0000 |
|---|---|---|
| committer | Rafael H. Schloming <rhs@apache.org> | 2010-09-10 14:58:08 +0000 |
| commit | d395f78651d9af3a01f29a0dcf447f27edff44d9 (patch) | |
| tree | da5198ebbbaf398e081a7cad56d1b42c9dd7d6c8 /qpid/python | |
| parent | a5e1b7350fdf65ae34dc7cb6c54145661fe19921 (diff) | |
| download | qpid-python-d395f78651d9af3a01f29a0dcf447f27edff44d9.tar.gz | |
handle request timeout
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@995815 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python')
| -rw-r--r-- | qpid/python/qpid/messaging/driver.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/qpid/python/qpid/messaging/driver.py b/qpid/python/qpid/messaging/driver.py index 0c7c7e7c4d..bdcdb26180 100644 --- a/qpid/python/qpid/messaging/driver.py +++ b/qpid/python/qpid/messaging/driver.py @@ -784,6 +784,10 @@ class Engine: if sf.completed: sst.write_op(SessionCompleted(sst.executed)) + def do_session_request_timeout(self, rt): + sst = self.get_sst(rt) + sst.write_op(SessionTimeout(timeout=0)) + def do_execution_result(self, er): sst = self.get_sst(er) sst.results[er.command_id] = er.value |
