Skip to content

Commit

Permalink
[chore] 변수 데이터 타입 재정의
Browse files Browse the repository at this point in the history
  • Loading branch information
hyejungg committed Mar 29, 2022
1 parent 608a487 commit 6c4e730
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ if (nodeEnv === 'production') {
}
app.use(morgan(morganFormat, { stream: logger.stream }));

const isDisableKeepAlive = false;
let isDisableKeepAlive = false;
app.use(function (req, res, next) {
if (isDisableKeepAlive) {
res.set('Connection', 'close');
Expand All @@ -37,7 +37,7 @@ app.use(function (req, res, next) {
});

app.listen(port, () => {
process.send('ready');
// process.send('ready');
logger.info(`[Push Server] on port ${port} | ${nodeEnv}`);

/** 앱 시작과 동시에 푸쉬알림 스케줄러 실행 */
Expand Down

0 comments on commit 6c4e730

Please sign in to comment.