Skip to content

Commit fa2da17

Browse files
committed
chore(instrumentation): import the warm-ups through the path alias
The dynamic imports in the Redis warm-up block used relative paths; the file already resolves `@/` and the repository rule is absolute imports.
1 parent 7e5c9b4 commit fa2da17

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/sim/instrumentation-node.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -408,8 +408,8 @@ export async function register() {
408408
// first request that needs one does not pay the handshake inside its own
409409
// deadline, but boot never waits on Redis to serve requests that do not touch it.
410410
const [{ warmRedisConnection }, { warmExecutionSignalHub }] = await Promise.all([
411-
import('./lib/core/config/redis'),
412-
import('./lib/execution/execution-signal'),
411+
import('@/lib/core/config/redis'),
412+
import('@/lib/execution/execution-signal'),
413413
])
414414
void warmRedisConnection()
415415
void warmExecutionSignalHub()

0 commit comments

Comments
 (0)