pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37910?usp=email )
Change subject: s1gw: Increase failure timeouts to ease debugging ......................................................................
s1gw: Increase failure timeouts to ease debugging
Let the IUT do some stuff before quickly exiting. In fact, the previous timeouts were a bit tight anyway since several messages may be required before an answer comes back on the same interface.
Change-Id: I985511c1a56edb0663826a20bbf27ea34a6c4dcd --- M s1gw/ConnHdlr.ttcn 1 file changed, 2 insertions(+), 2 deletions(-)
Approvals: osmith: Looks good to me, approved Jenkins Builder: Verified laforge: Looks good to me, but someone else must approve
diff --git a/s1gw/ConnHdlr.ttcn b/s1gw/ConnHdlr.ttcn index 4af0ef7..4b906c2 100644 --- a/s1gw/ConnHdlr.ttcn +++ b/s1gw/ConnHdlr.ttcn @@ -120,7 +120,7 @@
function f_ConnHdlr_rx_s1ap_from_enb(out S1AP_PDU pdu, template (present) S1AP_PDU tr_pdu := ?, - float Tval := 0.5) + float Tval := 3.0) runs on ConnHdlr { timer T := Tval;
@@ -143,7 +143,7 @@
function f_ConnHdlr_rx_s1ap_from_mme(out S1AP_PDU pdu, template (present) S1AP_PDU tr_pdu := ?, - float Tval := 0.5) + float Tval := 3.0) runs on ConnHdlr { var S1AP_RecvFrom recv; timer T := Tval;