Skip to content

Commit efacb78

Browse files
authored
fix(rust): increase rust query delay (#3412)
5 mins is not enough for some servers to load and query to become available
1 parent 4c9ea84 commit efacb78

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lgsm/config-default/config-lgsm/rustserver/_default.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ logdays="7"
108108

109109
## Monitor | https://docs.linuxgsm.com/commands/monitor
110110
# Query delay time
111-
querydelay="5"
111+
querydelay="10"
112112

113113
## ANSI Colors | https://docs.linuxgsm.com/features/ansi-colors
114114
ansi="on"

lgsm/functions/check_deps.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ fn_deps_build_debian(){
350350
if [ "${shortname}" != "ts3" ]&&[ "${shortname}" != "mumble" ]&&[ "${shortname}" != "mc" ]&&[ "${shortname}" != "pmc" ]&&[ "${shortname}" != "wmc" ]&&[ "${engine}" != "renderware" ]; then
351351
if [ "${arch}" == "x86_64" ]; then
352352
# lib32gcc1 is now called lib32gcc-s1 in debian 11
353-
if { [ "${distroid}" == "debian" ]&&[ "${distroversion}" == "11" ]; }|| { [ "${distroid}" == "ubuntu" ]&&[ "${distroversion}" == "20.10" ]; } ||{ [ "${distroid}" == "pop" ]&&[ "${distroversion}" == "20.10" ]; }; then
353+
if { [ "${distroid}" == "debian" ]&&[ "${distroversion}" == "11" ]; }||{ [ "${distroid}" == "ubuntu" ]&&[ "${distroversion}" == "20.10" ]; }||{ [ "${distroid}" == "pop" ]&&[ "${distroversion}" == "20.10" ]; }; then
354354
array_deps_required+=( lib32gcc-s1 lib32stdc++6 )
355355
else
356356
array_deps_required+=( lib32gcc1 lib32stdc++6 )

0 commit comments

Comments
 (0)