mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 09:09:36 +02:00
Merge pull request #18116 from overleaf/jpa-bulk-replace-localhost
[misc] bulk replace localhost with 127.0.0.1 GitOrigin-RevId: d238f3635302e8ff5500d611108c4d1bef216726
This commit is contained in:
@@ -18,7 +18,7 @@ describe('fetch-utils', function () {
|
||||
before(async function () {
|
||||
this.server = new TestServer()
|
||||
await this.server.start(PORT)
|
||||
this.url = path => `http://localhost:${PORT}${path}`
|
||||
this.url = path => `http://127.0.0.1:${PORT}${path}`
|
||||
})
|
||||
|
||||
after(async function () {
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
const redis = require('../../')
|
||||
const logger = require('@overleaf/logger')
|
||||
|
||||
const rclient = redis.createClient({ host: 'localhost', port: '6379' })
|
||||
const rclient = redis.createClient({ host: '127.0.0.1', port: '6379' })
|
||||
|
||||
setInterval(() => {
|
||||
rclient.healthCheck(err => {
|
||||
|
||||
Reference in New Issue
Block a user