Skip to content
Snippets Groups Projects
Commit 9bade296 authored by David Trattnig's avatar David Trattnig
Browse files

Allow numeric passwords.

parent a96ce8f0
No related branches found
No related tags found
No related merge requests found
Pipeline #822 passed
...@@ -145,7 +145,7 @@ class AuraConfig: ...@@ -145,7 +145,7 @@ class AuraConfig:
""" """
db_name = self.get("db_name") db_name = self.get("db_name")
db_user = self.get("db_user") db_user = self.get("db_user")
db_pass = self.get("db_pass") db_pass = str(self.get("db_pass"))
db_host = self.get("db_host") db_host = self.get("db_host")
db_charset = self.get("db_charset", "utf8") db_charset = self.get("db_charset", "utf8")
return "mysql://" + db_user + ":" + db_pass + "@" + db_host + "/" + db_name + "?charset=" + db_charset return "mysql://" + db_user + ":" + db_pass + "@" + db_host + "/" + db_name + "?charset=" + db_charset
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment