Skip to content

Commit a6aea6e

Browse files
committed
fix(satellite): correct import path for runtime validator module
1 parent b6a49ca commit a6aea6e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

services/satellite/src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import { McpActivityTracker } from './services/mcp-activity-tracker';
2323
import { ToolSearchService } from './services/tool-search-service';
2424
import { OAuthTokenService } from './services/oauth-token-service';
2525
import { SsePingService } from './services/sse-ping-service';
26-
import { validateSystemRuntimes } from './utils/runtime-validator.js';
26+
import { validateSystemRuntimes } from './utils/runtime-validator';
2727

2828
/**
2929
* Validate registration token format and availability

services/satellite/src/utils/runtime-validator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ function buildWarningMessage(result: RuntimeCheckResult): string {
207207
* @param logger - Logger instance (must have info() and fatal() methods)
208208
* @throws Never - Calls process.exit(1) on fatal errors
209209
*/
210-
export function validateSystemRuntimes(logger: any): void {
210+
export function validateSystemRuntimes(logger: { info: (msg: string) => void; fatal: (msg: string) => void }): void {
211211
// Check if skip flag is set
212212
const skipChecks = process.env.DEPLOYSTACK_SKIP_RUNTIME_CHECKS === 'true';
213213

0 commit comments

Comments
 (0)