Ubuntu

set update time 1 minute to 30 seconds

......@@ -144,7 +144,7 @@ console.log(Current_Weather);
const Start_Interval = (second, CALL) => {
CALL(); //처음 불러올때 한번 호출하고
call_interval = setInterval(CALL, second * 1000); //그 후에 1분마다 호출
call_interval = setInterval(CALL, second * 500); //그 후에 30초마다 호출
}
io.on('connection', (socket) => { //프론트와 소켓 연결시 이벤트 루프 동작
......