chore: upgrade Node.js runtime to v24 across codebase #419

Merged
jason.woltje merged 438 commits from fix/auth-frontend-remediation into main 2026-02-17 01:04:47 +00:00
Showing only changes of commit d2003a7b03 - Show all commits

View File

@@ -99,10 +99,9 @@ export class FederationModule implements OnModuleInit {
validateFederationConfig();
this.logger.log("Federation configuration validated successfully");
} catch (error) {
this.logger.error(
`Federation configuration validation failed: ${error instanceof Error ? error.message : String(error)}`
this.logger.warn(
`Federation disabled: ${error instanceof Error ? error.message : String(error)}`
);
throw error;
}
}
}