diff options
author | msglm <msglm@techchud.xyz> | 2025-08-17 19:54:24 -0500 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-08-17 19:54:24 -0500 |
commit | f03546069fcce4d2e7d50035088c680f8a59c45c (patch) | |
tree | 0b62be0578001d2b720c6808bd2d0a4a020f5da2 | |
parent | 799e5364841a9429a98a8df70b66b3693b9a82f4 (diff) | |
download | indeed-watcher-f03546069fcce4d2e7d50035088c680f8a59c45c.tar.gz indeed-watcher-f03546069fcce4d2e7d50035088c680f8a59c45c.tar.bz2 indeed-watcher-f03546069fcce4d2e7d50035088c680f8a59c45c.zip |
make indeed watcher sleep more often
-rw-r--r-- | src/indeedwatcher.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/indeedwatcher.nim b/src/indeedwatcher.nim index 7bdad49..bc52138 100644 --- a/src/indeedwatcher.nim +++ b/src/indeedwatcher.nim @@ -87,9 +87,9 @@ for feed in feeds: for entry in rssFeedReply.items: #Sleep so indeed.com doesn't freak out - if counter > 4: - echo "resting for 7 seconds ..." - sleep 7000 + if counter > 7: + echo "resting for 10 seconds ..." + sleep 10000 counter = 0 #Don't even bother visiting it if its in the cache |