Skip to content

Commit

Permalink
Fix tedious and fastify plugin tests (#4710)
Browse files Browse the repository at this point in the history
  • Loading branch information
juan-fernandez committed Oct 1, 2024
1 parent 04f8e37 commit 2a14d8e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,7 @@ jobs:
runs-on: ubuntu-latest
services:
mssql:
image: mcr.microsoft.com/mssql/server:2017-latest-ubuntu
image: mcr.microsoft.com/mssql/server:2019-latest
env:
ACCEPT_EULA: 'Y'
SA_PASSWORD: DD_HUNTER2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export async function createAndStartServer (app) {
})

try {
await app.listen(0)
await app.listen({ port: 0 })
const address = app.server.address()
const port = address.port
process.send({ port })
Expand Down

0 comments on commit 2a14d8e

Please sign in to comment.