Skip to content

Commit

Permalink
Ensure next-server prepare only execute once (#68616)
Browse files Browse the repository at this point in the history
  • Loading branch information
huozhi committed Aug 7, 2024
1 parent c127262 commit 8f2dd20
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/next/src/server/next-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ export default class NextNodeServer extends BaseServer<
protected middlewareManifestPath: string
private _serverDistDir: string | undefined
private imageResponseCache?: ResponseCache
private registeredInstrumentation: boolean = false
protected renderWorkersPromises?: Promise<void>
protected dynamicRoutes?: {
match: import('../shared/lib/router/utils/route-matcher').RouteMatchFn
Expand Down Expand Up @@ -324,6 +325,8 @@ export default class NextNodeServer extends BaseServer<
}

protected async runInstrumentationHookIfAvailable() {
if (this.registeredInstrumentation) return
this.registeredInstrumentation = true
await this.instrumentation?.register?.()
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
let count = 0

export function register() {
if (process.env.NEXT_RUNTIME === 'nodejs') {
if (count > 0) {
throw new Error('duplicated-register')
}
console.log('register-log')
count++
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,10 @@ describe('instrumentation-hook - register-once', () => {
await next.fetch('/foo')
expect(next.cliOutput).toIncludeRepeated('register-log', 1)
})

it('should not error when concurrent requests are made', async () => {
await Promise.all([next.fetch('/foo'), next.fetch('/foo')])
expect(next.cliOutput).toIncludeRepeated('register-log', 1)
expect(next.cliOutput).not.toInclude('duplicated-register')
})
})

0 comments on commit 8f2dd20

Please sign in to comment.