We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d04e53e commit c747bacCopy full SHA for c747bac
functions
@@ -81,7 +81,7 @@ case "${RTPPC_TYPE}" in
81
*) fail_rc 1 "Unknown socket type RTPPC_TYPE=${RTPPC_TYPE}";;
82
esac
83
84
-MM_INIT_DELAY=1
+MM_INIT_DELAY="${MM_INIT_DELAY:-"1"}"
85
RTPP_STAT_TIMEOUT=$((36 + ${MM_INIT_DELAY}))
86
ALICE_TIMEOUT=45
87
BOB_TIMEOUT=45
@@ -93,9 +93,8 @@ then
93
MM_SOCK_BARE="${BASEDIR}/b2bua.sock"
94
MM_SOCK="unix:${MM_SOCK_BARE}"
95
# Python b2bua needs slightly more time to init everything
96
- MM_INIT_DELAY=5
97
# RTP sessions might take up to 60 seconds to disconnect on no media
98
- RTPP_STAT_TIMEOUT=$((70 + ${MM_INIT_DELAY}))
+ RTPP_STAT_TIMEOUT=$((72 + ${MM_INIT_DELAY}))
99
RTPP_PRE_STAT_TIMEOUT=$((55 + ${MM_INIT_DELAY}))
100
ALICE_TIMEOUT=90
101
BOB_TIMEOUT=90
0 commit comments