Skip to content

Commit

Permalink
rename ObjectDatagramForwarder finish function
Browse files Browse the repository at this point in the history
  • Loading branch information
tetter27 committed Jan 8, 2025
1 parent ddaa24a commit bd60661
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ impl DatagramForwarder {
Ok(())
}

pub(crate) async fn terminate(&self) -> Result<()> {
pub(crate) async fn finish(&self) -> Result<()> {
let downstream_session_id = self.session.stable_id();
let downstream_stream_id = 0; // stream_id of datagram does not exist (TODO: delete buffer manager)
self.senders
Expand All @@ -112,7 +112,7 @@ impl DatagramForwarder {
})
.await?;

tracing::info!("Terminated DatagramForwarder");
tracing::info!("DatagramForwarder finished");

Ok(())
}
Expand Down

0 comments on commit bd60661

Please sign in to comment.