Skip to content

Commit 8c1f207

Browse files
committed
Fix return value based on error thrown by pymysql library
Signed-off-by: Mriyam Tamuli <[email protected]>
1 parent 433d18b commit 8c1f207

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ee/core/mysql.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,5 +133,4 @@ def check_db_exists(self, db_name):
133133
return False
134134
except MySQLConnectionError as e:
135135
Log.debug(self, str(e))
136-
raise MySQLConnectionError
137-
#return False
136+
return False

0 commit comments

Comments
 (0)