aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2021-04-19 21:30:16 +0000
committerNeels Hofmeyr <neels@hofmeyr.de>2021-04-28 16:31:08 +0200
commit7a0bc6f881ab39a5e058ba45444b429b6df5d662 (patch)
treee2fd32bd7c958a39b0e8abb67a596d1629f99f41
parent40257f47b8eed7bff14bed31df8493bc324c3ecc (diff)
Lb: make sure we never have missing timer configurability
After I found that X12 was missing from the VTY config, make sure that no timers have been forgotten in lcs_ta_req.c: change the default timeout to -1. We will notice missing timers during testing. Change-Id: I7c0b098622548bf0f0374c304522e6a9db0331e3
-rw-r--r--src/osmo-bsc/lcs_ta_req.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osmo-bsc/lcs_ta_req.c b/src/osmo-bsc/lcs_ta_req.c
index 3b859a7d3..bcee6e1c8 100644
--- a/src/osmo-bsc/lcs_ta_req.c
+++ b/src/osmo-bsc/lcs_ta_req.c
@@ -56,7 +56,7 @@ static const struct osmo_tdef_state_timeout lcs_ta_req_fsm_timeouts[32] = {
osmo_tdef_fsm_inst_state_chg(FI, STATE, \
lcs_ta_req_fsm_timeouts, \
(bsc_gsmnet)->T_defs, \
- 5)
+ -1)
#define lcs_ta_req_fail(cause, fmt, args...) do { \
LOG_LCS_TA_REQ(lcs_ta_req, LOGL_ERROR, "BSSLAP TA Request failed in state %s: " fmt "\n", \