aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/server-commands/miscs/sql-command.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-12-09 11:14:47 +0100
committerChocobozzz <me@florianbigard.com>2022-12-12 13:36:23 +0100
commit2732eeff9e6994582293b5aaa0cb158b7e272e9e (patch)
tree417d30cf470cd1db84e06c5dbd1b5429d4b99bc1 /shared/server-commands/miscs/sql-command.ts
parentc7c5f8d0f17b0ab598fbe237f11639c6de28110c (diff)
downloadPeerTube-2732eeff9e6994582293b5aaa0cb158b7e272e9e.tar.gz
PeerTube-2732eeff9e6994582293b5aaa0cb158b7e272e9e.tar.zst
PeerTube-2732eeff9e6994582293b5aaa0cb158b7e272e9e.zip
Fix CI using 127.0.0.1 for tests
Diffstat (limited to 'shared/server-commands/miscs/sql-command.ts')
-rw-r--r--shared/server-commands/miscs/sql-command.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/server-commands/miscs/sql-command.ts b/shared/server-commands/miscs/sql-command.ts
index f163cc8c9..dbc441aba 100644
--- a/shared/server-commands/miscs/sql-command.ts
+++ b/shared/server-commands/miscs/sql-command.ts
@@ -131,7 +131,7 @@ export class SQLCommand extends AbstractCommand {
131 const dbname = 'peertube_test' + this.server.internalServerNumber 131 const dbname = 'peertube_test' + this.server.internalServerNumber
132 const username = 'peertube' 132 const username = 'peertube'
133 const password = 'peertube' 133 const password = 'peertube'
134 const host = 'localhost' 134 const host = '127.0.0.1'
135 const port = 5432 135 const port = 5432
136 136
137 this.sequelize = new Sequelize(dbname, username, password, { 137 this.sequelize = new Sequelize(dbname, username, password, {