From 657ea58fa4debd06dc92b127fc1f920f4bcb5c7e Mon Sep 17 00:00:00 2001 From: richard Date: Tue, 10 Mar 2009 01:08:45 +0000 Subject: [PATCH] Fix some broken logging. Remove (broken and incorrect) optimisation added to set_inner multilink handling. git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/roundup/trunk@4177 57a73879-2fb5-44c3-a270-3262357dd7e2 --- roundup/backends/back_mysql.py | 6 +++--- roundup/backends/rdbms_common.py | 6 ------ 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/roundup/backends/back_mysql.py b/roundup/backends/back_mysql.py index b83db40..c707c2c 100644 --- a/roundup/backends/back_mysql.py +++ b/roundup/backends/back_mysql.py @@ -66,10 +66,10 @@ def db_nuke(config): # stupid MySQL bug requires us to drop all the tables first for table in tables: command = 'DROP TABLE `%s`'%table[0] - self.log_debug(command) + logging.debug(command) cursor.execute(command) command = "DROP DATABASE %s"%config.RDBMS_NAME - self.log_info(command) + logging.info(command) cursor.execute(command) conn.commit() conn.close() @@ -83,7 +83,7 @@ def db_create(config): conn = MySQLdb.connect(**kwargs) cursor = conn.cursor() command = "CREATE DATABASE %s"%config.RDBMS_NAME - self.log_info(command) + logging.info(command) cursor.execute(command) conn.commit() conn.close() diff --git a/roundup/backends/rdbms_common.py b/roundup/backends/rdbms_common.py index 31aa0ac..26f78b6 100644 --- a/roundup/backends/rdbms_common.py +++ b/roundup/backends/rdbms_common.py @@ -1740,12 +1740,6 @@ class Class(hyperdb.Class): # handle additions for id in value: - # If this node is in the cache, then we do not need to go to - # the database. (We don't consider this an LRU hit, though.) - if self.cache.has_key((classname, nodeid)): - # Return 1, not True, to match the type of the result of - # the SQL operation below. - return 1 if not self.db.getclass(link_class).hasnode(id): raise IndexError, '%s has no node %s'%(link_class, id) if id in l: -- 2.30.2