Skip to content
This repository was archived by the owner on Jul 14, 2020. It is now read-only.

Commit 252ec7a

Browse files
GHMattiGHMatti
GHMatti
authored and
GHMatti
committed
Fix the defaultCfg
1 parent da0e125 commit 252ec7a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

mysql-async.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -14837,8 +14837,8 @@ module.exports = Profiler;
1483714837
const { parseUrl } = __webpack_require__(9);
1483814838

1483914839
const defaultCfg = {
14840-
host: 'localhost',
14841-
username: 'root',
14840+
host: '127.0.0.1',
14841+
user: 'root',
1484214842
database: 'fivem',
1484314843
supportBigNumbers: true,
1484414844
multipleStatements: true,

src/server/settings.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
const { parseUrl } = require('mysql/lib/ConnectionConfig');
22

33
const defaultCfg = {
4-
host: 'localhost',
5-
username: 'root',
4+
host: '127.0.0.1',
5+
user: 'root',
66
database: 'fivem',
77
supportBigNumbers: true,
88
multipleStatements: true,

0 commit comments

Comments
 (0)