1
0
Fork 0
mirror of https://github.com/sdr-enthusiasts/docker-adsb-ultrafeeder.git synced 2024-10-16 05:50:44 +00:00

reduce --net-beast-reduce-interval default to 0.5 (was 1.0)

this is the default used by most of the affected aggregators
This commit is contained in:
Matthias Wirth 2024-02-20 14:58:23 +01:00
parent f941be563f
commit bd6ea02c96

View file

@ -131,8 +131,8 @@ fi
READSB_CMD+=("--net-api-port=${READSB_NET_API_PORT:-30152}")
# Handle "--net-beast-reduce-interval=<seconds>"
# Default it to 1.0 second if no value is provided
READSB_CMD+=("--net-beast-reduce-interval=${READSB_NET_BEAST_REDUCE_INTERVAL:-1.0}")
# Default it to 0.5 second if no value is provided, which is reasonable for feeding aggregators
READSB_CMD+=("--net-beast-reduce-interval=${READSB_NET_BEAST_REDUCE_INTERVAL:-0.5}")
# Handle "--net-beast-reduce-out-port=<ports>"
if [[ -n "$READSB_NET_BEAST_REDUCE_OUT_PORT" ]]; then