Use quotes for all SQL server strings

This should prevent confusion if the password fails to load because it contains a #
This commit is contained in:
GeorgH93 2020-03-23 02:14:57 +01:00
parent 1cf93591e0
commit f86e30bd6a
No known key found for this signature in database
GPG Key ID: D1630D37F9E4B3C8
2 changed files with 5 additions and 5 deletions

View File

@ -72,10 +72,10 @@ Database:
UUID_Type: auto
# Settings only for MySQL
SQL:
Host: localhost:3306
Database: minecraft
User: minecraft
Password: minecraft
Host: "localhost:3306"
Database: "minecraft"
User: "minecraft"
Password: "minecraft"
# The max amount of connections to the database the connection pool will open
MaxConnections: 2
# Sets the max lifetime of the connection in seconds. -1 = Default (30min)

View File

@ -7,7 +7,7 @@
<packaging>pom</packaging>
<properties>
<revision>2.3.5-RC2</revision>
<revision>2.3.5</revision>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>