pespin has submitted this change. ( 
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37927?usp=email )

Change subject: s1gw: Increase S1AP setup timeout
......................................................................

s1gw: Increase S1AP setup timeout

The existing timer is too tight, specially when running tons of
components concurrently.

Change-Id: I99d554bf0dd0f4c1dbd801663c1801f3725df09f
---
M s1gw/ConnHdlr.ttcn
1 file changed, 2 insertions(+), 2 deletions(-)

Approvals:
  fixeria: Looks good to me, approved
  Jenkins Builder: Verified




diff --git a/s1gw/ConnHdlr.ttcn b/s1gw/ConnHdlr.ttcn
index 408b315..e4cff0c 100644
--- a/s1gw/ConnHdlr.ttcn
+++ b/s1gw/ConnHdlr.ttcn
@@ -167,7 +167,7 @@
        }
 }

-function f_ConnHdlr_setup(Global_ENB_ID genb_id) runs on ConnHdlr {
+function f_ConnHdlr_setup(Global_ENB_ID genb_id, float Tval := 5.0) runs on 
ConnHdlr {
        var S1AP_PDU pdu;
        timer T;

@@ -182,7 +182,7 @@
        f_ConnHdlr_tx_s1ap_from_enb(ts_S1AP_SetupReq(genb_id,
                                                     supported_tas_dummy,
                                                     v32));
-       T.start(1.0);
+       T.start(Tval);
        alt {
        [] S1AP_CONN.receive(S1APSRV_Event:S1APSRV_EVENT_CONN_UP) { repeat; }
        [] S1AP_CONN.receive(tr_S1AP_SetupReq) {

--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37927?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings?usp=email

Gerrit-MessageType: merged
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I99d554bf0dd0f4c1dbd801663c1801f3725df09f
Gerrit-Change-Number: 37927
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <[email protected]>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <[email protected]>
Gerrit-Reviewer: pespin <[email protected]>

Reply via email to