pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/35592?usp=email )
Change subject: epdg: Add module param to configure initial diameter watchdog time ......................................................................
epdg: Add module param to configure initial diameter watchdog time
Change-Id: I9eb42d7664d8e607b913e23c87477388f70662b9 --- M epdg/EPDG_Tests.ttcn 1 file changed, 11 insertions(+), 1 deletion(-)
Approvals: Jenkins Builder: Verified laforge: Looks good to me, approved daniel: Looks good to me, but someone else must approve
diff --git a/epdg/EPDG_Tests.ttcn b/epdg/EPDG_Tests.ttcn index f58cf96..60e0d1c 100644 --- a/epdg/EPDG_Tests.ttcn +++ b/epdg/EPDG_Tests.ttcn @@ -43,6 +43,7 @@ integer mp_s2b_remote_port := GTP2C_PORT;
charstring mp_diam_realm := "localdomain"; + integer mp_diam_watchdog_initial_wait_sec := 6*3; }
@@ -250,7 +251,7 @@ * RFC3539 sec 3.4.1 [5] * https://github.com/freeDiameter/freeDiameter/blob/master/libfdcore/p_psm.c#L... */ - f_sleep(1.0); + f_sleep(int2float(mp_diam_watchdog_initial_wait_sec)); }
private function f_init_gtp(charstring id) runs on MTC_CT {