I experience the same ... on very low-spec hardware.
Cause seems to be: specified timeout of 3.0 seconds in
https://github.com/sabnzbd/sabnzbd/blob ... py#L58-L60
Your CPU is an Atom. So that could be the cause. If you set Logging to +Debug and restart SABnzbd, search for a line like this:
2022-02-09 11:06:59,516::DEBUG::[SABnzbd:1238] CPU Pystone available performance = 4416
4416 is very low spec. A modern Celeron is at 95.000, a i3 at 200.000 or so.
So I wonder about your Atom performance.
Another reason could: your DNS and/or Internet not working for your Synology.
EDIT:
a manual ip address goes OK:
Most of the time (5.8 second) is taken by just loading the library
Code: Select all
sander@nanopineo2:~/git/sabnzbd$ time python3 -c "from sabnzbd.getipaddress import *; "
real 0m5.853s
user 0m5.297s
sys 0m0.558s
... find the ip addresses only takes 0.2 second
Code: Select all
sander@nanopineo2:~/git/sabnzbd$ time python3 -c "from sabnzbd.getipaddress import *; print('start'); localipv4() ; print(publicipv4()[:6]); print(ipv6()[:10]) "
start
163.15
2001:470:1
real 0m6.049s
user 0m5.320s
sys 0m0.591s