Skip to content

Commit 0d0ca7e

Browse files
committed
Addressing review feedback, fixing slow fairqueue test
1 parent 75752ba commit 0d0ca7e

File tree

2 files changed

+2
-2
lines changed
  • apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.models.$modelId
  • packages/redis-worker/src/fair-queue/tests

2 files changed

+2
-2
lines changed

apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.models.$modelId/route.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ type Tab = "overview" | "global" | "usage";
113113
const TAB_CONFIG: { id: Tab; label: string }[] = [
114114
{ id: "overview", label: "Overview" },
115115
{ id: "usage", label: "Metrics" },
116-
{ id: "global", label: "Global Metrics" },
116+
{ id: "global", label: "Global metrics" },
117117
];
118118

119119
export default function ModelDetailPage() {

packages/redis-worker/src/fair-queue/tests/fairQueue.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ describe("FairQueue", () => {
215215
describe("basic enqueue and process", () => {
216216
redisTest(
217217
"should enqueue and process a single message",
218-
{ timeout: 15000 },
218+
{ timeout: 30000 },
219219
async ({ redisOptions }) => {
220220
const processed: string[] = [];
221221
keys = new DefaultFairQueueKeyProducer({ prefix: "test" });

0 commit comments

Comments
 (0)