Skip to content

Commit

Permalink
chore: remove warning logs of wait-on for proxy (#764)
Browse files Browse the repository at this point in the history
  • Loading branch information
cjk7989 authored Nov 2, 2023
1 parent ec056b0 commit 9f38398
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/msha/middlewares/request.middleware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,6 @@ async function serveStaticOrProxyResponse(req: http.IncomingMessage, res: http.S
interval: 100, // poll interval in ms, default 250ms
simultaneous: 1, // limit to 1 connection per resource at a time
timeout: 60000, // timeout in ms, default Infinity
tcpTimeout: 1000, // tcp timeout in ms, default 300ms
window: 1000, // stabilization time in ms, default 750ms
strictSSL: false,
verbose: false, // force disable verbose logs even if SWA_CLI_DEBUG is enabled
})
Expand All @@ -123,7 +121,6 @@ async function serveStaticOrProxyResponse(req: http.IncomingMessage, res: http.S
})
.catch((err) => {
logger.silly(`Could not connect to ${resource}`);
logger.warn(err.message);
throw err;
});
});
Expand Down

0 comments on commit 9f38398

Please sign in to comment.