Skip to content

Commit 1b58d9f

Browse files
committed
cu-cp: fix unit test failure due to UE destruction concurrent with CU-CP destruction
1 parent 2c6d370 commit 1b58d9f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

include/srsran/ngap/ngap_configuration_helpers.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ inline srs_cu_cp::ngap_configuration make_default_ngap_config()
2727
cfg.plmn = "00101";
2828
cfg.tac = 7;
2929
s_nssai_t slice_cfg;
30-
slice_cfg.sst = 1;
30+
slice_cfg.sst = 1;
31+
cfg.ue_context_setup_timeout_s = std::chrono::seconds{2};
3132
cfg.slice_configurations.push_back(slice_cfg);
3233

3334
return cfg;

0 commit comments

Comments
 (0)