Modify ↓
#249 closed defect (fixed)
possible svn_pool leak in trac.real_main
| Reported by: | anonymous | Owned by: | Jonas Borgström |
|---|---|---|---|
| Priority: | normal | Milestone: | 0.7 |
| Component: | general | Version: | 0.6.1 |
| Severity: | major | Keywords: | |
| Cc: | Branch: | ||
| Release Notes: | |||
| API Changes: | |||
| Internal Changes: | |||
Description
At the end of trac.real_main the svn_pool is destroyed and the repo connection is shut down. If module.run throws an exception, isn't this going to get skipped? I don't know Python that well, so maybe it gets cleaned up as the variables are popped of the call stack or something.
Attachments (0)
Change History (3)
comment:1 by , 22 years ago
| Milestone: | → 0.6.2 |
|---|---|
| Status: | new → assigned |
| Version: | devel → 0.6.1 |
comment:3 by , 22 years ago
| Milestone: | 0.6.2 → 0.7 |
|---|
Note:
See TracTickets
for help on using tickets.



Yeah, this is something that's been fixed in trunk. using a
try: finally:block. I guess this change should be backported into 0.6-stable.