Modify ↓
Opened 20 years ago
Closed 20 years ago
#1102 closed defect (fixed)
contrib/trac-post-commit-hook should test for database version 8, not 7
Reported by: | Juanma Barranquero | Owned by: | Christopher Lenz |
---|---|---|---|
Priority: | low | Milestone: | 0.9 |
Component: | general | Version: | devel |
Severity: | minor | Keywords: | |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
After [1169], source:trunk/contrib/trac-post-commit-hook should test for database version 8.
-
trac-post-commit-hook
156 156 cursor.execute('SELECT value FROM system WHERE ' 157 'name=%s AND value=%s', 'database_version', ' 7')157 'name=%s AND value=%s', 'database_version', '8') 158 158 if not cursor.fetchone(): 159 raise Exception('Expected Trac database version 7')159 raise Exception('Expected Trac database version 8') 160 160
Attachments (0)
Change History (5)
comment:1 by , 20 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
comment:2 by , 20 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
comment:3 by , 20 years ago
Resolution: | fixed |
---|---|
Status: | closed → reopened |
source:/trunk/contrib/trac-post-commit-hook should be updated to check for database version 9 now.
Note:
See TracTickets
for help on using tickets.
Fixed in [1178].