From c2094d7616c388cb3e1e186b023ca480c5b4393e Mon Sep 17 00:00:00 2001 From: Mr Chen Date: Fri, 11 Jan 2019 14:39:36 +0800 Subject: [PATCH] Update simdht_worker.py --- plugins/simdht/workers/simdht_worker.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/simdht/workers/simdht_worker.py b/plugins/simdht/workers/simdht_worker.py index b0d855218..1a89692ef 100755 --- a/plugins/simdht/workers/simdht_worker.py +++ b/plugins/simdht/workers/simdht_worker.py @@ -454,14 +454,13 @@ class DBCheck(Master): as sdata from information_schema.tables where TABLE_SCHEMA='" + DB_NAME + "' and TABLE_NAME in('search_hash','search_filelist', 'search_statusreport')" db_size_limit = float(DB_SIZE_LIMIT) * 1024 - print db_size_limit data = self.query(sql) db_size = data[0][0] if db_size > db_size_limit: self.delete_db(DB_DEL_LINE) - print 'db size limit:', int(DB_SIZE_LIMIT) * 1024, db_size + print 'db size limit:', db_size_limit, db_size # self.delete_db(DB_DEL_LINE) def run(self):