chore: switch port
All checks were successful
Node.js CI / Lint and Test (push) Successful in 45s

This commit is contained in:
2025-08-11 19:42:31 -07:00
parent a845c50dcb
commit 9f041454c0

View File

@@ -108,12 +108,12 @@ export const instantiateServer = (lynira: Lynira): void => {
} }
}); });
server.listen({ port: 5033 }, (actualError) => { server.listen({ port: 5044 }, (actualError) => {
if (actualError) { if (actualError) {
void logger.error("instantiate server", actualError); void logger.error("instantiate server", actualError);
return; return;
} }
void logger.log("debug", "Server listening on port 5033."); void logger.log("debug", "Server listening on port 5044.");
}); });
} catch (actualError) { } catch (actualError) {
if (actualError instanceof Error) { if (actualError instanceof Error) {