We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a834f69 commit 7e03996Copy full SHA for 7e03996
lib/f1ap/du/ue_context/f1c_du_bearer_impl.cpp
@@ -212,7 +212,10 @@ void f1c_other_srb_du_bearer::handle_transmit_notification(uint32_t highest_pdcp
212
213
void f1c_other_srb_du_bearer::handle_delivery_notification(uint32_t highest_pdcp_sn)
214
{
215
- handle_notification(highest_pdcp_sn, false);
+ if (not ue_exec.defer([this, highest_pdcp_sn]() { handle_notification(highest_pdcp_sn, false); })) {
216
+ logger.warning("Discarded delivery notification for SRB{} because the task executor queue is full.",
217
+ srb_id_to_uint(srb_id));
218
+ }
219
}
220
221
async_task<void> f1c_other_srb_du_bearer::handle_pdu_and_await(byte_buffer pdu, bool tx_or_delivery)
0 commit comments