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(); validateFederationConfig();
this.logger.log("Federation configuration validated successfully"); this.logger.log("Federation configuration validated successfully");
} catch (error) { } catch (error) {
this.logger.error( this.logger.warn(
`Federation configuration validation failed: ${error instanceof Error ? error.message : String(error)}` `Federation disabled: ${error instanceof Error ? error.message : String(error)}`
); );
throw error;
} }
} }
} }