File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ use hyperactor::mailbox::MessageEnvelope;
29
29
use hyperactor:: mailbox:: OncePortReceiver ;
30
30
use hyperactor:: mailbox:: PortReceiver ;
31
31
use hyperactor:: mailbox:: Undeliverable ;
32
- use hyperactor:: mailbox:: monitored_return_handle ;
32
+ use hyperactor:: mailbox:: custom_monitored_return_handle ;
33
33
use hyperactor:: message:: Bind ;
34
34
use hyperactor:: message:: Bindings ;
35
35
use hyperactor:: message:: Unbind ;
@@ -138,7 +138,7 @@ impl PyMailbox {
138
138
let return_handle = self
139
139
. inner
140
140
. bound_return_handle ( )
141
- . unwrap_or ( monitored_return_handle ( ) ) ;
141
+ . unwrap_or ( custom_monitored_return_handle ( "PyMailbox::post" ) ) ;
142
142
self . inner . post ( envelope, return_handle) ;
143
143
Ok ( ( ) )
144
144
}
@@ -169,7 +169,7 @@ impl PyMailbox {
169
169
let return_handle = self
170
170
. inner
171
171
. bound_return_handle ( )
172
- . unwrap_or ( monitored_return_handle ( ) ) ;
172
+ . unwrap_or ( custom_monitored_return_handle ( "PyMailbox::post_cast" ) ) ;
173
173
self . inner . post ( envelope, return_handle) ;
174
174
Ok ( ( ) )
175
175
}
You can’t perform that action at this time.
0 commit comments