Edgewall Software

Changes between Initial Version and Version 15 of Ticket #9453


Ignore:
Timestamp:
Aug 29, 2012, 3:36:00 PM (12 years ago)
Author:
Christian Boos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #9453

    • Property Status newclosed
    • Property Cc leho@… Thijs Triemstra osimons added
    • Property Summary [PATCH] The session does not be saved with `req.send()`[PATCH] The session does not get saved with `req.send()`
    • Property Version 0.120.11
    • Property Milestone0.13
    • Property Owner set to Jun Omae
    • Property Resolutionfixed
  • Ticket #9453 – Description

    initial v15  
    1 When the session is modified and response with `req.send()`, the session does not be saved.
     1When the session is modified and the response is sent with `req.send()`, the session does not get saved.
    22
    3 The patch adds `self.session.save()` to `check_modified`, `send` and `send_file` excluding `send_error`.
     3The patch adds `self.session.save()` to `check_modified`, `send` and `send_file`, excluding `send_error`.
    44
    55Trac 0.12 and Trac 0.11-stable have the same issue.
  • Ticket #9453 – Release Notes

    initial v15  
     1When modified, the session is now always saved regardless of the way the response is sent (except for `send_error`).