From 8c84039e9dc406575f6e7f40626dd110c47f5d17 Mon Sep 17 00:00:00 2001 From: Nikolaos Karaolidis Date: Sat, 23 Apr 2022 14:15:53 +0300 Subject: [PATCH] Fix typo --- src/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.py b/src/app.py index 5874d5d..44d35bc 100644 --- a/src/app.py +++ b/src/app.py @@ -24,7 +24,7 @@ def result(): def safe(): app.logger.info('Initializing safe reboot process') - # Try to ping the router 100 times + # Try to ping the router 50 times for i in range(50): if call(['ping', '-c', '1', url], stdout=DEVNULL, stderr=STDOUT) == 0: app.logger.info('Router is online')