File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -239,9 +239,8 @@ def test_tasks_written_once_during_rebalancing() -> None:
239239 print (f"Cleaning up test output files in { TESTS_OUTPUT_PATH } " )
240240 shutil .rmtree (TESTS_OUTPUT_PATH )
241241
242- if (
242+ assert (
243243 not all ([row [3 ] == 0 for row in row_count ])
244244 or not consumers_have_data
245245 or consumers_have_error
246- ):
247- assert False
246+ )
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ pub struct ActorHandles {
172172impl ActorHandles {
173173 #[ instrument( skip( self ) ) ]
174174 async fn shutdown ( mut self , deadline : Duration ) {
175- debug ! ( "Signaling shutdown to actors..." ) ;
175+ error ! ( "Signaling shutdown to actors..." ) ;
176176 self . shutdown . cancel ( ) ;
177177 info ! ( "Actor shutdown signaled, waiting for rendezvous..." ) ;
178178
You can’t perform that action at this time.
0 commit comments