Skip to content

Commit b033bb6

Browse files
committed
one fix
1 parent 6a28eda commit b033bb6

File tree

1 file changed

+2
-1
lines changed
  • dev-packages/e2e-tests/test-applications/node-hapi/src

1 file changed

+2
-1
lines changed

dev-packages/e2e-tests/test-applications/node-hapi/src/app.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ const Boom = require('@hapi/boom');
1414

1515
const server = Hapi.server({
1616
port: 3030,
17-
host: 'localhost',
17+
// Avoid IPv6-only ::1 bind for `localhost` on Linux CI (fetch uses 127.0.0.1).
18+
host: '0.0.0.0',
1819
});
1920

2021
const init = async () => {

0 commit comments

Comments
 (0)