Skip to content

Commit 53ba64c

Browse files
committed
e2ap: removing hardcoded report peroid in E2 indication procedure
1 parent ab06500 commit 53ba64c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/e2/procedures/e2_indication_procedure.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ void e2_indication_procedure::operator()(coro_context<eager_async_task<void>>& c
3434
break;
3535
}
3636
transaction_sink.subscribe_to(*ev_mng.sub_del_reqs[subscription.request_id.ric_requestor_id].get(),
37-
(std::chrono::milliseconds)1000);
37+
(std::chrono::milliseconds)subscription.report_period);
3838
CORO_AWAIT(transaction_sink);
3939
if (!transaction_sink.timeout_expired()) {
4040
logger.info("Subscription deleted");

0 commit comments

Comments
 (0)