From e04f3977c64bddb1bc4dd419d73e2d5c1efc96e4 Mon Sep 17 00:00:00 2001 From: Mauricio Barragan Date: Thu, 11 Jun 2026 03:06:42 -0600 Subject: [PATCH] Fix Upstash import path blocking server start (M5 QA). rate-limit.ts imported from a non-existent interfaces/cache path; use infrastructure/cache so Playwright smoke can start the server. --- src/interfaces/http/rate-limit.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interfaces/http/rate-limit.ts b/src/interfaces/http/rate-limit.ts index ce2ae1e..248c11c 100644 --- a/src/interfaces/http/rate-limit.ts +++ b/src/interfaces/http/rate-limit.ts @@ -1,7 +1,7 @@ import { Ratelimit } from "@upstash/ratelimit"; import { Redis } from "@upstash/redis"; import type { NextFunction, Request, Response } from "express"; -import { isUpstashConfigured } from "../cache/upstash.js"; +import { isUpstashConfigured } from "../../infrastructure/cache/upstash.js"; type RouteTier = "read" | "stream" | "write" | "health";