Reduce lint suppressions in core tests and runtime

This commit is contained in:
Tak Hoffman
2026-03-27 01:26:57 -05:00
parent 7c00cc9d0a
commit f5643544c2
11 changed files with 115 additions and 112 deletions

View File

@@ -226,8 +226,7 @@ export async function runGatewayLoop(params: {
// Keep process alive; SIGUSR1 triggers an in-process restart (no supervisor required).
// SIGTERM/SIGINT still exit after a graceful shutdown.
let isFirstStart = true;
// eslint-disable-next-line no-constant-condition
while (true) {
for (;;) {
onIteration();
try {
server = await params.start();