aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaria Lisina <sekoohaka.sarisan@gmail.com>2025-08-02 23:47:48 +0500
committerMaria Lisina <sekoohaka.sarisan@gmail.com>2025-08-02 23:47:48 +0500
commitac8a2c96f66b54b72142db9613135f3486e7d4a0 (patch)
treea5e8518b0765484757b015e3d3895c8183614376
parentd921ccb4767a9ccc74d9d0c4653989f7246bb876 (diff)
bot: Update default startup values
Signed-off-by: Maria Lisina <sekoohaka.sarisan@gmail.com>
-rw-r--r--README.md8
-rwxr-xr-xbot.zsh24
2 files changed, 16 insertions, 16 deletions
diff --git a/README.md b/README.md
index 2b89486..a1c1dff 100644
--- a/README.md
+++ b/README.md
@@ -67,7 +67,7 @@ Options:
-o Allow SauceNAO with unknown Telegram Bot API instance
-l Use local Telegram Bot API, address: 127.0.0.1:8081
-r <num> Inline results limit, max: 50, default: 10
- -g <num> Shortcuts storage limit, max: 10000, default: 100
+ -g <num> Shortcuts storage limit, max: 10000, default: 500
-m <mode> Cache mode, default: normal
-t <secs> Cache expiration time, max: 1000, default: 300 secs
-s <secs> Sleep duration time, max: 100, default: 10 secs
@@ -75,9 +75,9 @@ Options:
-j Use threaded MD5 hash lookup
-q Do not print logs
-u Collect debug dumps
- -i <secs> Telegram Bot API connetion timeout, max: 10, default: 10 secs
- -e <secs> Image Boards API connetion timeout, max: 10, default: 5 secs
- -d <secs> Head request connetion timeout, max: 10, default: 2 secs
+ -i <secs> Telegram Bot API connetion timeout, max: 5, default: 5 secs
+ -e <secs> Image Boards API connetion timeout, max: 5, default: 5 secs
+ -d <secs> Head request connetion timeout, max: 5, default: 2 secs
-f <secs> Connrefused timeout, max: 2, default: none
-n <addr> Proxy server for Telegram Bot API
-x <addr> Proxy server for Image Boards API/SauceNAO
diff --git a/bot.zsh b/bot.zsh
index 10bffe4..05edbb0 100755
--- a/bot.zsh
+++ b/bot.zsh
@@ -165,7 +165,7 @@ then
"\n -o\t\tAllow SauceNAO with unknown Telegram Bot API instance" \
"\n -l\t\tUse local Telegram Bot API, address: 127.0.0.1:8081" \
"\n -r <num>\tInline results limit, max: 50, default: 10" \
- "\n -g <num>\tShortcuts storage limit, max: 10000, default: 100" \
+ "\n -g <num>\tShortcuts storage limit, max: 10000, default: 500" \
"\n -m <mode>\tCache mode, default: normal" \
"\n -t <secs>\tCache expiration time, max: 1000, default: 300 secs" \
"\n -s <secs>\tSleep duration time, max: 100, default: 10 secs" \
@@ -173,9 +173,9 @@ then
"\n -j\t\tUse threaded MD5 hash lookup" \
"\n -q\t\tDo not print logs" \
"\n -u\t\tCollect debug dumps" \
- "\n -i <secs>\tTelegram Bot API connetion timeout, max: 10, default: 10 secs" \
- "\n -e <secs>\tImage Boards API connetion timeout, max: 10, default: 5 secs" \
- "\n -d <secs>\tHead request connetion timeout, max: 10, default: 2 secs" \
+ "\n -i <secs>\tTelegram Bot API connetion timeout, max: 5, default: 5 secs" \
+ "\n -e <secs>\tImage Boards API connetion timeout, max: 5, default: 5 secs" \
+ "\n -d <secs>\tHead request connetion timeout, max: 5, default: 2 secs" \
"\n -f <secs>\tConnrefused timeout, max: 2, default: none" \
"\n -n <addr>\tProxy server for Telegram Bot API" \
"\n -x <addr>\tProxy server for Image Boards API/SauceNAO" \
@@ -260,7 +260,7 @@ then
shorts_limit=10000
fi
else
- shorts_limit=100
+ shorts_limit=500
fi
if [[ -n "${inline_limit}" ]]
@@ -338,12 +338,12 @@ then
exit 1
fi
- if [[ ${internal_timeout} -gt 10 ]]
+ if [[ ${internal_timeout} -gt 5 ]]
then
- internal_timeout=10
+ internal_timeout=5
fi
else
- internal_timeout=10
+ internal_timeout=5
fi
if [[ -n "${external_timeout}" ]]
@@ -355,9 +355,9 @@ then
exit 1
fi
- if [[ ${external_timeout} -gt 10 ]]
+ if [[ ${external_timeout} -gt 5 ]]
then
- external_timeout=10
+ external_timeout=5
fi
else
external_timeout=5
@@ -372,9 +372,9 @@ then
exit 1
fi
- if [[ ${head_timeout} -gt 10 ]]
+ if [[ ${head_timeout} -gt 5 ]]
then
- head_timeout=10
+ head_timeout=5
fi
else
head_timeout=2