Edgewall Software

Changes between Initial Version and Version 1 of Ticket #9470


Ignore:
Timestamp:
Jun 29, 2010, 1:52:12 PM (14 years ago)
Author:
Christian Boos
Comment:

Interesting. I forgot to do one change after r9442:

  • trac/db/api.py

    diff --git a/trac/db/api.py b/trac/db/api.py
    a b def with_transaction(env, db=None):  
    7272        elif ldb:
    7373            fn(ldb)
    7474        else:
    75             ldb = _transaction_local.db = env.get_db_cnx()
     75            ldb = _transaction_local.db = DatabaseManager(env).get_connection()
    7676            try:
    7777                fn(ldb)
    7878                ldb.commit()

However, this omission should have been harmless. Need to investigate further.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #9470

    • Property Keywords transaction added
    • Property Component generaldatabase backend
  • Ticket #9470 – Description

    initial v1  
    11I'm getting following error while trying to upgrade my DB.
    22
    3 That's happend after installing ComponentDependencyPlugin
     3That's happend after installing TH:ComponentDependencyPlugin
    44
    55Traceback is: