#11933 closed (fixed)
Missing cached_db value in SESSION_ENGINE setting docs
Reported by: | Gabriel Hurley | Owned by: | Gabriel Hurley |
---|---|---|---|
Component: | Documentation | Version: | 1.1 |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Ready for checkin | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
The docs don't list cached_db as a "valid value" in either ref/settings or topics/http/sessions.
The submitted patch corrects both instances and updates the .. versionadded:: 1.0 to .. versionchanged:: 1.1 for each.
Attachments (2)
Change History (12)
by , 15 years ago
Attachment: | docs_session_engine_cached_db.diff added |
---|
comment:1 by , 15 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
comment:2 by , 15 years ago
milestone: | → 1.2 |
---|---|
Triage Stage: | Unreviewed → Accepted |
comment:3 by , 15 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
comment:4 by , 15 years ago
comment:5 by , 15 years ago
Patch needs improvement: | set |
---|---|
Resolution: | fixed |
Status: | closed → reopened |
sorry guys, the patch is incorrect the backend is called cached_db
and not .cache_db
by , 15 years ago
Attachment: | 11933_correction.diff added |
---|
corrects cache_db to cached_db, patched against current trunk
comment:6 by , 15 years ago
Patch needs improvement: | unset |
---|
fixed (again). corrections done against latest trunk [12949] so it applies cleanly. sorry 'bout that.
comment:7 by , 15 years ago
Triage Stage: | Accepted → Ready for checkin |
---|
comment:8 by , 15 years ago
Resolution: | → fixed |
---|---|
Status: | reopened → closed |
comment:9 by , 15 years ago
Note:
See TracTickets
for help on using tickets.
(In [12569]) Fixed #11933 -- Added versionchanged marker for the cache_db session backend. Thanks to gabrielhurley for the report and patch.