mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-09-12 09:52:59 +03:00
Compare commits
2 Commits
fix/12681-
...
fix/12849-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
02d432f59a | ||
|
|
ed2bf5dfe9 |
@@ -56,7 +56,7 @@ Repository map and Reference Documentation sections below.
|
||||
| Translators | `open-sse/translator/` | Format conversion (OpenAI↔Claude↔Gemini) |
|
||||
| Transformer | `open-sse/transformer/` | Responses API ↔ Chat Completions |
|
||||
| Services | `open-sse/services/` | Combo routing, rate limits, caching, etc |
|
||||
| Database | `src/lib/db/` | SQLite domain modules (172 migrations) |
|
||||
| Database | `src/lib/db/` | SQLite domain modules (173 migrations) |
|
||||
| Domain/Policy | `src/domain/` | Policy engine, cost rules, fallback logic |
|
||||
| MCP Server | `open-sse/mcp-server/` | 110 tools (45 canonical + memory/skill/GitHub/pool/gamification/plugin/Notion/Obsidian/local-corpus/RTK modules), 3 transports (stdio / SSE / Streamable HTTP), 33 scopes |
|
||||
| A2A Server | `src/lib/a2a/` | JSON-RPC 2.0 agent protocol |
|
||||
|
||||
@@ -1253,7 +1253,7 @@ Métricas canônicas em 2026-08-24: **1.029 vídeos únicos** · **11.132.922 vi
|
||||
<tr><td nowrap><b>Runtime</b></td><td>Node.js 22.x / 24.x LTS — <code>>=22.22.2 <23 || >=24.0.0 <27</code></td></tr>
|
||||
<tr><td nowrap><b>Language</b></td><td>TypeScript 6.0 — <b>100% TypeScript</b> across <code>src/</code> and <code>open-sse/</code> (zero <code>any</code> in core since v2.0)</td></tr>
|
||||
<tr><td nowrap><b>Framework</b></td><td>Next.js 16 + React 19 + Tailwind CSS 4</td></tr>
|
||||
<tr><td nowrap><b>Database</b></td><td>better-sqlite3 (SQLite, WAL journaling) + LowDB (JSON legacy) — 122 domain modules, 172 migrations</td></tr>
|
||||
<tr><td nowrap><b>Database</b></td><td>better-sqlite3 (SQLite, WAL journaling) + LowDB (JSON legacy) — 122 domain modules, 173 migrations</td></tr>
|
||||
<tr><td nowrap><b>Memory</b></td><td>SQLite FTS5 full-text + int8-quantized vector embeddings, typed decay</td></tr>
|
||||
<tr><td nowrap><b>Schemas</b></td><td>Zod 4 — MCP tool I/O validation + API contracts</td></tr>
|
||||
<tr><td nowrap><b>Protocols</b></td><td>MCP (stdio / HTTP / SSE) + A2A v0.3 (JSON-RPC 2.0 + SSE)</td></tr>
|
||||
|
||||
1
changelog.d/fixes/12849-nvidia-stale-synced-catalog.md
Normal file
1
changelog.d/fixes/12849-nvidia-stale-synced-catalog.md
Normal file
@@ -0,0 +1 @@
|
||||
- fix(nvidia): fail open when a synced model catalog goes stale instead of gating forever (#12849)
|
||||
8
llm.txt
8
llm.txt
@@ -14,7 +14,7 @@ OmniRoute solves the problem of managing multiple AI provider subscriptions, quo
|
||||
|
||||
- **Runtime:** Node.js `>=22.22.2 <23 || >=24.0.0 <27`, ES Modules (`"type": "module"`)
|
||||
- **Framework:** Next.js 16 (App Router) with TypeScript 6
|
||||
- **Database:** SQLite via better-sqlite3 (local, zero-config, 172 migrations)
|
||||
- **Database:** SQLite via better-sqlite3 (local, zero-config, 173 migrations)
|
||||
- **State management:** Zustand (client), SQLite (server persistence)
|
||||
- **UI:** React 19, Tailwind CSS 4, Recharts for analytics, @lobehub/icons for 130+ provider SVG icons
|
||||
- **Auth:** OAuth 2.0 (PKCE) for providers, bcrypt for local user auth
|
||||
@@ -124,7 +124,7 @@ OmniRoute solves the problem of managing multiple AI provider subscriptions, quo
|
||||
│ │ │ ├── secrets.ts # Secrets management
|
||||
│ │ │ ├── stateReset.ts # State reset utilities
|
||||
│ │ │ ├── migrationRunner.ts # Schema migration runner
|
||||
│ │ │ └── migrations/ # 172 versioned SQL migration files
|
||||
│ │ │ └── migrations/ # 173 versioned SQL migration files
|
||||
│ │ ├── evals/ # Eval runner and scheduler
|
||||
│ │ ├── memory/ # Persistent conversational memory
|
||||
│ │ │ ├── extraction.ts # Memory extraction from conversations
|
||||
@@ -389,7 +389,7 @@ diagnostics) plus **memory**, **skill**, **agentSkill**, **githubSkill**, **pool
|
||||
|
||||
8. **ProviderIcon component:** Unified icon system using `@lobehub/icons` (130+ SVG) with PNG fallback and generic icon fallback chain. Used on providers, dashboard, and agents pages.
|
||||
|
||||
9. **DB architecture:** `localDb.ts` is a re-export layer only — real logic lives in 122 `src/lib/db/` modules with 172 SQL migrations.
|
||||
9. **DB architecture:** `localDb.ts` is a re-export layer only — real logic lives in 122 `src/lib/db/` modules with 173 SQL migrations.
|
||||
|
||||
10. **Upstream headers:** Custom headers merged in executors after default auth; same header name replaces executor value. Forbidden header names in `src/shared/constants/upstreamHeaders.ts`.
|
||||
|
||||
@@ -433,7 +433,7 @@ diagnostics) plus **memory**, **skill**, **agentSkill**, **githubSkill**, **pool
|
||||
|
||||
4. **Environment variables:** All configuration is in `.env` (from `.env.example`). Key vars: `PORT`, `NEXT_PUBLIC_BASE_URL`, `API_KEY`, `ADMIN_PASSWORD`.
|
||||
|
||||
5. **Database layer:** Operations go through `src/lib/db/` modules (122 domain-specific files, 172 migrations). `localDb.ts` is re-exports only — add new functions to the proper `db/*.ts` module.
|
||||
5. **Database layer:** Operations go through `src/lib/db/` modules (122 domain-specific files, 173 migrations). `localDb.ts` is re-exports only — add new functions to the proper `db/*.ts` module.
|
||||
|
||||
6. **Tests** use Node.js built-in test runner + Vitest. Run `npm test`. Vitest for MCP/autoCombo (`npm run test:vitest`). Playwright for E2E (`npm run test:e2e`). Coverage gate: ratchet vs `quality-baseline.json`, absolute floor 60% statements/lines/functions/branches.
|
||||
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
-- #12849: track when a connection's synced model catalog was last written so
|
||||
-- getActiveSyncedCatalog can stop treating it as authoritative forever. Plain
|
||||
-- TEXT column (ISO timestamp) — rowToCamel passes it through as-is;
|
||||
-- NULL = never synced (pre-existing rows fail open, same as today's no-sync
|
||||
-- state, rather than staying pinned to a frozen snapshot indefinitely).
|
||||
ALTER TABLE provider_connections ADD COLUMN synced_models_at TEXT;
|
||||
@@ -8,7 +8,7 @@ import { isRetiredGitHubCopilotModelId } from "@omniroute/open-sse/config/provid
|
||||
|
||||
import type { SqliteAdapter } from "./adapters/types";
|
||||
import { getDbInstance } from "./core";
|
||||
import { getProviderConnectionsCount } from "./providers";
|
||||
import { getProviderConnectionsCount, touchConnectionSyncedModelsAt } from "./providers";
|
||||
import { type JsonRecord, getKeyValue } from "./models/shared";
|
||||
import {
|
||||
normalizeSyncedAvailableModels,
|
||||
@@ -615,6 +615,10 @@ export async function replaceSyncedAvailableModelsForConnection(
|
||||
const key = `${providerId}:${connectionId}`;
|
||||
const normalizedModels = normalizeSyncedAvailableModels(models, providerId);
|
||||
persistCanonicalSyncedAvailableModels(key, normalizedModels, normalizeSyncedAvailableModels);
|
||||
// #12849: stamp the sync time on every successful sync — even a re-sync that
|
||||
// returns an unchanged list proves the catalog is still current, so staleness
|
||||
// gating in getActiveSyncedCatalog must not treat it as aging regardless.
|
||||
if (connectionId) await touchConnectionSyncedModelsAt(connectionId);
|
||||
// Return the full unioned list for the provider
|
||||
return getSyncedAvailableModels(providerId);
|
||||
}
|
||||
|
||||
@@ -41,8 +41,30 @@ export type ProviderCatalogReconciliation = {
|
||||
type ProviderConnectionRef = {
|
||||
id: string;
|
||||
provider: string;
|
||||
syncedModelsAt: string | null;
|
||||
};
|
||||
|
||||
// #12849: a connection synced once and never refreshed must not pin routing to
|
||||
// that point-in-time snapshot forever — a live model the provider has since
|
||||
// added would be rejected as "unavailable" indefinitely. Once the synced
|
||||
// catalog exceeds this age (or was never timestamped — pre-migration rows),
|
||||
// getActiveSyncedCatalog stops treating it as authoritative and fails open,
|
||||
// matching the existing no-sync-yet behavior. Overridable for ops/testing.
|
||||
const DEFAULT_SYNCED_CATALOG_STALE_AFTER_MS = 30 * 24 * 60 * 60 * 1000; // 30 days
|
||||
|
||||
function getSyncedCatalogStaleAfterMs(): number {
|
||||
const raw = process.env.OMNIROUTE_SYNCED_CATALOG_STALE_AFTER_MS;
|
||||
const parsed = raw !== undefined ? Number(raw) : NaN;
|
||||
return Number.isFinite(parsed) && parsed > 0 ? parsed : DEFAULT_SYNCED_CATALOG_STALE_AFTER_MS;
|
||||
}
|
||||
|
||||
function isSyncedAtFresh(syncedModelsAt: string | null): boolean {
|
||||
if (!syncedModelsAt) return false;
|
||||
const syncedAtMs = Date.parse(syncedModelsAt);
|
||||
if (Number.isNaN(syncedAtMs)) return false;
|
||||
return Date.now() - syncedAtMs <= getSyncedCatalogStaleAfterMs();
|
||||
}
|
||||
|
||||
function resolveStoredProviderId(aliasOrId: string): string {
|
||||
const normalized = aliasOrId.trim();
|
||||
if (!normalized) return "";
|
||||
@@ -92,6 +114,7 @@ function readConnectionRef(connection: unknown): ProviderConnectionRef | null {
|
||||
const record = connection as {
|
||||
id?: unknown;
|
||||
provider?: unknown;
|
||||
syncedModelsAt?: unknown;
|
||||
};
|
||||
|
||||
if (
|
||||
@@ -106,6 +129,7 @@ function readConnectionRef(connection: unknown): ProviderConnectionRef | null {
|
||||
return {
|
||||
id: record.id,
|
||||
provider: record.provider,
|
||||
syncedModelsAt: typeof record.syncedModelsAt === "string" ? record.syncedModelsAt : null,
|
||||
};
|
||||
}
|
||||
|
||||
@@ -179,24 +203,38 @@ async function unionCustomModels(
|
||||
* Return the unioned synced catalog belonging only to active connections.
|
||||
*
|
||||
* A provider is authoritative only when at least one active connection has a
|
||||
* non-empty usable catalog. Missing, empty, malformed, or unavailable state
|
||||
* fails open to the static registry.
|
||||
* non-empty usable catalog that was synced recently enough (#12849). Missing,
|
||||
* empty, malformed, stale, or unavailable state fails open to the static
|
||||
* registry instead of gating on a frozen point-in-time snapshot forever.
|
||||
*/
|
||||
async function loadConnectionCatalog(storedProviderId: string): Promise<SyncedAvailableModel[]> {
|
||||
type ConnectionCatalog = {
|
||||
models: SyncedAvailableModel[];
|
||||
hasFreshConnection: boolean;
|
||||
};
|
||||
|
||||
async function loadConnectionCatalog(storedProviderId: string): Promise<ConnectionCatalog> {
|
||||
const [connections, modelsByConnection] = await Promise.all([
|
||||
getRawProviderConnections({ provider: storedProviderId, isActive: true }, undefined, undefined, [
|
||||
"id",
|
||||
"provider",
|
||||
"synced_models_at",
|
||||
]),
|
||||
getSyncedAvailableModelsByConnection(storedProviderId),
|
||||
]);
|
||||
|
||||
const activeConnectionIds = connections
|
||||
const activeConnections = connections
|
||||
.map(readConnectionRef)
|
||||
.filter((connection): connection is ProviderConnectionRef => connection !== null)
|
||||
.map((connection) => connection.id);
|
||||
.filter((connection): connection is ProviderConnectionRef => connection !== null);
|
||||
|
||||
return collectModelsForConnections(modelsByConnection, activeConnectionIds);
|
||||
return {
|
||||
models: collectModelsForConnections(
|
||||
modelsByConnection,
|
||||
activeConnections.map((connection) => connection.id)
|
||||
),
|
||||
hasFreshConnection: activeConnections.some((connection) =>
|
||||
isSyncedAtFresh(connection.syncedModelsAt)
|
||||
),
|
||||
};
|
||||
}
|
||||
|
||||
export async function getActiveSyncedCatalog(providerId: string): Promise<ActiveSyncedCatalog> {
|
||||
@@ -212,11 +250,18 @@ export async function getActiveSyncedCatalog(providerId: string): Promise<Active
|
||||
// picker-added customModels so dispatch admits the same rows the picker REST shows.
|
||||
const models = enrichCursorCatalog(
|
||||
storedProviderId,
|
||||
await unionCustomModels(storedProviderId, unionModels(siblingCatalogs))
|
||||
await unionCustomModels(
|
||||
storedProviderId,
|
||||
unionModels(siblingCatalogs.map((catalog) => catalog.models))
|
||||
)
|
||||
);
|
||||
if (models.length > 0) {
|
||||
// #12849: only gate on this catalog while at least one sibling connection
|
||||
// was synced recently — otherwise a one-time historical sync would keep
|
||||
// rejecting live models forever with no way to self-recover.
|
||||
const hasFreshConnection = siblingCatalogs.some((catalog) => catalog.hasFreshConnection);
|
||||
return {
|
||||
authoritative: providerUsesAuthoritativeLiveCatalog(providerId),
|
||||
authoritative: providerUsesAuthoritativeLiveCatalog(providerId) && hasFreshConnection,
|
||||
models,
|
||||
};
|
||||
}
|
||||
|
||||
@@ -229,6 +229,7 @@ export const PROVIDER_CONNECTIONS_COLUMNS = new Set([
|
||||
"rate_limit_overrides_json",
|
||||
"created_at",
|
||||
"updated_at",
|
||||
"synced_models_at",
|
||||
]);
|
||||
|
||||
// ──────────────── Provider Connections ────────────────
|
||||
@@ -1063,6 +1064,29 @@ export async function touchConnectionLastUsed(
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* #12849: stamp when a connection's synced model catalog was last written.
|
||||
* getActiveSyncedCatalog reads this to stop treating a synced catalog as
|
||||
* authoritative forever — a connection synced once and never refreshed
|
||||
* silently pinned routing to that point-in-time snapshot with no staleness
|
||||
* check. Lightweight targeted UPDATE, mirrors touchConnectionLastUsed.
|
||||
*/
|
||||
export async function touchConnectionSyncedModelsAt(id: string): Promise<void> {
|
||||
if (!id) return;
|
||||
const db = getDbInstance() as unknown as DbLike;
|
||||
const now = new Date().toISOString();
|
||||
db.prepare(
|
||||
`UPDATE provider_connections SET
|
||||
synced_models_at = @syncedModelsAt,
|
||||
updated_at = @updatedAt
|
||||
WHERE id = @id`
|
||||
).run({
|
||||
syncedModelsAt: now,
|
||||
updatedAt: now,
|
||||
id,
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Lightweight backoff reset — runs a targeted UPDATE without SELECT or re-encrypt.
|
||||
* Follows the `clearConnectionErrorIfUnchanged` pattern but without the CAS check,
|
||||
|
||||
147
tests/unit/nvidia-stale-synced-catalog-12849.test.ts
Normal file
147
tests/unit/nvidia-stale-synced-catalog-12849.test.ts
Normal file
@@ -0,0 +1,147 @@
|
||||
/**
|
||||
* #12849: NVIDIA (and every other authoritative-live-catalog provider) treated a
|
||||
* connection's *synced* model catalog as authoritative forever once populated —
|
||||
* no staleness check, no default periodic refresh. A model that is live upstream
|
||||
* and present in the current static registry was rejected as "not available in
|
||||
* the active live catalog" indefinitely once any historical sync existed.
|
||||
*
|
||||
* getActiveSyncedCatalog now fails open once a connection's synced catalog
|
||||
* exceeds a staleness threshold (default 30 days; overridable via
|
||||
* OMNIROUTE_SYNCED_CATALOG_STALE_AFTER_MS), instead of gating on a frozen
|
||||
* point-in-time snapshot forever.
|
||||
*/
|
||||
import test from "node:test";
|
||||
import assert from "node:assert/strict";
|
||||
import fs from "node:fs";
|
||||
import os from "node:os";
|
||||
import path from "node:path";
|
||||
|
||||
const TEST_DATA_DIR = fs.mkdtempSync(path.join(os.tmpdir(), "omniroute-nvidia-stale-12849-"));
|
||||
|
||||
process.env.DATA_DIR = TEST_DATA_DIR;
|
||||
process.env.API_KEY_SECRET = process.env.API_KEY_SECRET || "nvidia-stale-12849-test-secret";
|
||||
|
||||
const core = await import("../../src/lib/db/core.ts");
|
||||
const { replaceSyncedAvailableModelsForConnection } = await import("../../src/lib/db/models.ts");
|
||||
const { getModelInfo } = await import("../../src/sse/services/model.ts");
|
||||
const { nvidiaProvider } = await import(
|
||||
"../../open-sse/config/providers/registry/nvidia/index.ts"
|
||||
);
|
||||
|
||||
const PROVIDER = "nvidia";
|
||||
const CONNECTION_ID = "nvidia-stale-catalog-12849";
|
||||
// Live upstream + present in the current static registry (asserted below), but
|
||||
// deliberately absent from the small "historical sync" catalog seeded here.
|
||||
const LIVE_MODEL = "moonshotai/kimi-k3";
|
||||
const STALE_SYNC_ONLY_MODEL = "some-retired-model-that-no-longer-exists";
|
||||
|
||||
function connectionRow(): { syncedModelsAt: string | null } {
|
||||
const db = core.getDbInstance();
|
||||
const row = db
|
||||
.prepare("SELECT synced_models_at AS syncedModelsAt FROM provider_connections WHERE id = ?")
|
||||
.get(CONNECTION_ID) as { syncedModelsAt: string | null } | undefined;
|
||||
if (!row) throw new Error(`connection ${CONNECTION_ID} not found`);
|
||||
return row;
|
||||
}
|
||||
|
||||
function ageConnectionSync(daysAgo: number): void {
|
||||
const db = core.getDbInstance();
|
||||
const agedTimestamp = new Date(Date.now() - daysAgo * 24 * 60 * 60 * 1000).toISOString();
|
||||
db.prepare("UPDATE provider_connections SET synced_models_at = ? WHERE id = ?").run(
|
||||
agedTimestamp,
|
||||
CONNECTION_ID
|
||||
);
|
||||
}
|
||||
|
||||
async function seedHistoricalSync(): Promise<void> {
|
||||
const db = core.getDbInstance();
|
||||
const now = new Date().toISOString();
|
||||
db.prepare(
|
||||
`INSERT OR REPLACE INTO provider_connections (id, provider, is_active, created_at, updated_at)
|
||||
VALUES (?, ?, 1, ?, ?)`
|
||||
).run(CONNECTION_ID, PROVIDER, now, now);
|
||||
|
||||
await replaceSyncedAvailableModelsForConnection(PROVIDER, CONNECTION_ID, [
|
||||
{ id: STALE_SYNC_ONLY_MODEL, name: STALE_SYNC_ONLY_MODEL, source: "imported" },
|
||||
]);
|
||||
}
|
||||
|
||||
test.beforeEach(async () => {
|
||||
core.resetDbInstance();
|
||||
fs.rmSync(TEST_DATA_DIR, { recursive: true, force: true, maxRetries: 5, retryDelay: 100 });
|
||||
fs.mkdirSync(TEST_DATA_DIR, { recursive: true });
|
||||
|
||||
assert.ok(
|
||||
nvidiaProvider.models.some((model) => model.id === LIVE_MODEL),
|
||||
`precondition: ${LIVE_MODEL} must exist in the current NVIDIA static registry`
|
||||
);
|
||||
|
||||
await seedHistoricalSync();
|
||||
});
|
||||
|
||||
test.after(() => {
|
||||
core.resetDbInstance();
|
||||
fs.rmSync(TEST_DATA_DIR, { recursive: true, force: true, maxRetries: 5, retryDelay: 100 });
|
||||
});
|
||||
|
||||
test("#12849: a fresh synced catalog still gates — a model missing from it is rejected", async () => {
|
||||
// Sanity: touchConnectionSyncedModelsAt stamped this sync as fresh already.
|
||||
const { syncedModelsAt } = connectionRow();
|
||||
assert.ok(syncedModelsAt, "replaceSyncedAvailableModelsForConnection must stamp synced_models_at");
|
||||
|
||||
const resolved = await getModelInfo(`${PROVIDER}/${LIVE_MODEL}`);
|
||||
|
||||
assert.equal(resolved.provider, null);
|
||||
assert.equal(resolved.errorType, "model_not_found");
|
||||
assert.match(resolved.errorMessage, /active live catalog/i);
|
||||
});
|
||||
|
||||
test("#12849: a stale synced catalog fails open — a live+registry model is no longer rejected", async () => {
|
||||
ageConnectionSync(45); // past the 30-day default staleness threshold
|
||||
|
||||
const resolved = await getModelInfo(`${PROVIDER}/${LIVE_MODEL}`);
|
||||
|
||||
assert.equal(
|
||||
resolved.provider,
|
||||
PROVIDER,
|
||||
`expected the stale catalog to fail open, got errorMessage=${resolved.errorMessage}`
|
||||
);
|
||||
assert.equal(resolved.model, LIVE_MODEL);
|
||||
});
|
||||
|
||||
test("#12849: a stale synced catalog is treated as non-authoritative in getActiveSyncedCatalog", async () => {
|
||||
const { getActiveSyncedCatalog } = await import("../../src/lib/db/models/activeSyncedCatalog.ts");
|
||||
|
||||
ageConnectionSync(45);
|
||||
|
||||
const catalog = await getActiveSyncedCatalog(PROVIDER);
|
||||
|
||||
assert.equal(catalog.authoritative, false);
|
||||
});
|
||||
|
||||
test("#12849: a connection never synced (no timestamp) is non-authoritative, not gated forever", async () => {
|
||||
const db = core.getDbInstance();
|
||||
db.prepare("UPDATE provider_connections SET synced_models_at = NULL WHERE id = ?").run(
|
||||
CONNECTION_ID
|
||||
);
|
||||
|
||||
const resolved = await getModelInfo(`${PROVIDER}/${LIVE_MODEL}`);
|
||||
|
||||
assert.equal(resolved.provider, PROVIDER);
|
||||
assert.equal(resolved.model, LIVE_MODEL);
|
||||
});
|
||||
|
||||
test("#12849: OMNIROUTE_SYNCED_CATALOG_STALE_AFTER_MS overrides the default threshold", async () => {
|
||||
const previous = process.env.OMNIROUTE_SYNCED_CATALOG_STALE_AFTER_MS;
|
||||
process.env.OMNIROUTE_SYNCED_CATALOG_STALE_AFTER_MS = String(60 * 60 * 1000); // 1 hour
|
||||
try {
|
||||
ageConnectionSync(1); // 1 day old — stale under the 1-hour override, fresh under the 30-day default
|
||||
|
||||
const resolved = await getModelInfo(`${PROVIDER}/${LIVE_MODEL}`);
|
||||
|
||||
assert.equal(resolved.provider, PROVIDER);
|
||||
} finally {
|
||||
if (previous === undefined) delete process.env.OMNIROUTE_SYNCED_CATALOG_STALE_AFTER_MS;
|
||||
else process.env.OMNIROUTE_SYNCED_CATALOG_STALE_AFTER_MS = previous;
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user