From 87b301cea6477c02aeb33d0179424409707f202c Mon Sep 17 00:00:00 2001 From: Hossin Asaadi Date: Fri, 4 Nov 2022 08:47:47 -0400 Subject: [PATCH] fix run schedule run time --- web/job/check_clinet_ip_job.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/job/check_clinet_ip_job.go b/web/job/check_clinet_ip_job.go index 6d6b0b63..1da1f744 100644 --- a/web/job/check_clinet_ip_job.go +++ b/web/job/check_clinet_ip_job.go @@ -105,7 +105,7 @@ func processLogFile() { LimitDevice := func() { LimitDevice() } stop := schedule(LimitDevice, 1000 *time.Millisecond) - time.Sleep(10 * time.Second) + time.Sleep(60 * time.Second) stop <- true }