]> git.openstreetmap.org Git - osqa.git/blobdiff - forum_modules/mysqlfulltext/__init__.py
Merge commit '9bea91a' into merge_small_prs
[osqa.git] / forum_modules / mysqlfulltext / __init__.py
index 679d70387eed15b644fc1e58f3aae4c8ec607b7d..5591015f8e7a7b4f6662da9e633a92ad65608ae0 100644 (file)
@@ -1,12 +1,14 @@
+from forum.base import get_database_engine
+database_type = get_database_engine()
+
 NAME = 'Mysql Full Text Search'
 DESCRIPTION = "Enables Mysql full text search functionality."
 
 try:
     import MySQLdb
     import settings_local
-    CAN_USE = settings_local.DATABASE_ENGINE in ('mysql', 'pooled_mysql')
+    CAN_USE = 'mysql' in database_type
 except Exception, e:
     import traceback
     traceback.print_exc()
     CAN_USE = False
-  
\ No newline at end of file