[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot]
2026-03-23 07:29:11 +00:00
committed by GitHub
parent fa028dcf1e
commit 49d79fcd37
4 changed files with 39 additions and 16 deletions

View File

@@ -170,9 +170,21 @@ export const libsqlRouter = createTRPCRouter({
}
const portsToCheck = [
{ port: input.externalPort, name: "externalPort", current: libsql.externalPort },
{ port: input.externalGRPCPort, name: "externalGRPCPort", current: libsql.externalGRPCPort },
{ port: input.externalAdminPort, name: "externalAdminPort", current: libsql.externalAdminPort },
{
port: input.externalPort,
name: "externalPort",
current: libsql.externalPort,
},
{
port: input.externalGRPCPort,
name: "externalGRPCPort",
current: libsql.externalGRPCPort,
},
{
port: input.externalAdminPort,
name: "externalAdminPort",
current: libsql.externalAdminPort,
},
];
for (const { port, name, current } of portsToCheck) {