Skip to content

Commit 48dfc65

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents af91e55 + 71b9021 commit 48dfc65

File tree

1 file changed

+1
-1
lines changed
  • dj_db_conn_pool/backends/jdbc/oceanbase

1 file changed

+1
-1
lines changed

dj_db_conn_pool/backends/jdbc/oceanbase/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def _get_dialect(self, *args, **kwargs):
3333
class Dialect(dialect_class):
3434
def do_ping(self, dbapi_connection):
3535
try:
36-
return super(OracleDialect, self).do_ping(dbapi_connection)
36+
return super(dialect_class, self).do_ping(dbapi_connection)
3737
except (jaydebeapi.DatabaseError, jpype.JException):
3838
return False
3939

0 commit comments

Comments
 (0)