Skip to content

Commit

Permalink
chore: move minio to a different port to avoid address in use errors
Browse files Browse the repository at this point in the history
  • Loading branch information
nickdirienzo committed Feb 9, 2025
1 parent 96d3d71 commit 0ab7da1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/minio.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const testEnv = {
AWS_ACCESS_KEY_ID: 'S3RVER',
AWS_SECRET_ACCESS_KEY: 'S3RVER',
AWS_REGION: '',
S3_ENDPOINT: 'http://localhost:4568',
S3_ENDPOINT: 'http://localhost:4567',
}
Object.assign(process.env, testEnv)

Expand All @@ -28,6 +28,7 @@ const server = new S3erver({
name: process.env.STORAGE_PATH,
},
],
port: 4567,
})

server.run((err) => {
Expand Down

0 comments on commit 0ab7da1

Please sign in to comment.