Skip to content

Commit ff9544a

Browse files
committed
fix(webapp): deeplinks, favorites and report links follow the concurrency-limits rename
1 parent 5f2051b commit ff9544a

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

‎apps/webapp/app/components/navigation/favoritePages.tsx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ const ENV_PAGE_META: Record<string, PageMeta> = {
234234
"bulk-actions": { icon: "bulk-actions", name: "Bulk actions", singular: "Bulk action" },
235235
apikeys: { icon: "apikeys", name: "API keys" },
236236
alerts: { icon: "alerts", name: "Alerts", singular: "Alert" },
237-
concurrency: { icon: "concurrency", name: "Concurrency" },
237+
"concurrency-limits": { icon: "concurrency", name: "Concurrency limits" },
238238
limits: { icon: "limits", name: "Limits" },
239239
schedules: { icon: "schedules", name: "Schedules", singular: "Schedule" },
240240
test: { icon: "test", name: "Test", singular: "Test" },

‎apps/webapp/app/presenters/v3/reports/health/flow.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ export function interpretFlow(metrics: Metric[], input: HealthInput): Finding {
116116
exclusions: [],
117117
observations:
118118
finishedPerMin > 0 ? [{ code: "not_workers_platform", evidence: { finishedPerMin } }] : [],
119-
recommendation: { code: "raise_env_limit", link: "concurrency" },
119+
recommendation: { code: "raise_env_limit", link: "concurrency-limits" },
120120
usesAttribution: true,
121121
};
122122
} else if (ev.throttledShare >= t.throttledShare && !pinned) {

‎apps/webapp/app/utils/deeplinkPages.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const ENV_PAGE_TARGETS: ReadonlyMap<string, DeeplinkTarget> = new Map([
1414
["batches", page("batches")],
1515
["branches", page("branches")],
1616
["bulk-actions", page("bulk-actions")],
17-
["concurrency", page("concurrency")],
17+
["concurrency-limits", page("concurrency-limits")],
1818
["dashboards", page("dashboards")],
1919
["deployments", page("deployments")],
2020
["dev-branches", page("dev-branches")],

‎apps/webapp/test/reportHealth.test.ts‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ describe("health cause tree (Golden A — env limit saturation)", () => {
9494

9595
it("footer = raise the limit (self-serve) + docs + do-nothing (drains)", () => {
9696
expect(vm.footer).toEqual([
97-
{ code: "raise_env_limit", link: "concurrency" },
98-
{ code: "concurrency_docs", link: "concurrency" },
97+
{ code: "raise_env_limit", link: "concurrency-limits" },
98+
{ code: "concurrency_docs", link: "concurrency-limits" },
9999
{ code: "do_nothing_drains", value: 2.3 },
100100
]);
101101
});

0 commit comments

Comments
 (0)