Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0c4d63f

Browse files
committed
Bug fix (reported by user over ML)
1 parent c8d4df6 commit 0c4d63f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/controller/handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def setHandler():
7272
items.insert(0, _)
7373

7474
for dbms, aliases, Handler, Connector in items:
75-
if conf.dbms and conf.dbms.lower() != dbms.lower():
75+
if conf.dbms and conf.dbms.lower() != dbms and conf.dbms.lower() not in aliases:
7676
debugMsg = "skipping test for %s" % dbms
7777
logger.debug(debugMsg)
7878
continue

0 commit comments

Comments
 (0)