File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import { McpActivityTracker } from './services/mcp-activity-tracker';
2323import { ToolSearchService } from './services/tool-search-service' ;
2424import { OAuthTokenService } from './services/oauth-token-service' ;
2525import { 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments