@@ -1654,12 +1654,18 @@ impl Handle {
1654
1654
/// Polling the socket ([`AsyncUdpSocket::poll_recv`]) will return [`Poll::Pending`]
1655
1655
/// indefinitely after this call.
1656
1656
#[ instrument( skip_all, fields( me = %self . msock. me) ) ]
1657
- pub ( crate ) async fn close ( & self ) -> Result < ( ) > {
1657
+ pub ( crate ) async fn close ( & self ) {
1658
1658
if self . msock . is_closed ( ) {
1659
- return Ok ( ( ) ) ;
1659
+ return ;
1660
1660
}
1661
1661
self . msock . closing . store ( true , Ordering :: Relaxed ) ;
1662
- self . msock . actor_sender . send ( ActorMessage :: Shutdown ) . await ?;
1662
+ // If this fails, then there's no receiver listening for shutdown messages,
1663
+ // so nothing to shut down anyways.
1664
+ self . msock
1665
+ . actor_sender
1666
+ . send ( ActorMessage :: Shutdown )
1667
+ . await
1668
+ . ok ( ) ;
1663
1669
self . msock . closed . store ( true , Ordering :: SeqCst ) ;
1664
1670
1665
1671
let mut tasks = self . actor_tasks . lock ( ) . await ;
@@ -1681,8 +1687,6 @@ impl Handle {
1681
1687
debug ! ( "aborting remaining {}/3 tasks" , tasks. len( ) ) ;
1682
1688
tasks. shutdown ( ) . await ;
1683
1689
}
1684
-
1685
- Ok ( ( ) )
1686
1690
}
1687
1691
}
1688
1692
@@ -3408,8 +3412,8 @@ mod tests {
3408
3412
println ! ( "closing endpoints" ) ;
3409
3413
let msock1 = m1. endpoint . magic_sock ( ) ;
3410
3414
let msock2 = m2. endpoint . magic_sock ( ) ;
3411
- m1. endpoint . close ( ) . await ? ;
3412
- m2. endpoint . close ( ) . await ? ;
3415
+ m1. endpoint . close ( ) . await ;
3416
+ m2. endpoint . close ( ) . await ;
3413
3417
3414
3418
assert ! ( msock1. msock. is_closed( ) ) ;
3415
3419
assert ! ( msock2. msock. is_closed( ) ) ;
0 commit comments