Skip to content

Commit 6107f53

Browse files
committed
chore(webapp): keep the eviction report type local to its module
It is used only by the boot check that produces it, so exporting it added a public name for nothing.
1 parent f10572e commit 6107f53

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/webapp/app/v3/snapshotStoreBoot.server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { getSnapshotStoreConfig, getSnapshotSweepClient } from "./snapshotStoreI
99
* default config evicts the slots it owns while every other node stays safe. `unknown` covers a
1010
* managed endpoint that refuses CONFIG GET, which is evidence of nothing either way.
1111
*/
12-
export type EvictionPolicyReport =
12+
type EvictionPolicyReport =
1313
| { kind: "unknown"; reason: string }
1414
| { kind: "known"; nodes: { node: string; policy: string }[] };
1515

0 commit comments

Comments
 (0)