File tree 2 files changed +16
-1
lines changed
2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -869,6 +869,21 @@ def test_loop_call_later_handle_when_after_fired(self):
869
869
self .loop .run_until_complete (fut )
870
870
self .assertEqual (handle .when (), when )
871
871
872
+ def test_thread_name_prefix_in_default_executor (self ):
873
+ called = []
874
+
875
+ def cb ():
876
+ called .append (threading .current_thread ().name )
877
+
878
+ async def runner ():
879
+ await self .loop .run_in_executor (None , cb )
880
+
881
+ self .loop .run_until_complete (runner ())
882
+
883
+ self .assertEqual (len (called ), 1 )
884
+ self .assertTrue (called [0 ] is not None )
885
+ self .assertTrue (called [0 ].startswith ("uvloop" ))
886
+
872
887
873
888
class TestBaseAIO (_TestBase , AIOTestCase ):
874
889
pass
Original file line number Diff line number Diff line change @@ -2741,7 +2741,7 @@ cdef class Loop:
2741
2741
# Only check when the default executor is being used
2742
2742
self ._check_default_executor()
2743
2743
if executor is None :
2744
- executor = cc_ThreadPoolExecutor()
2744
+ executor = cc_ThreadPoolExecutor(thread_name_prefix = ' uvloop ' )
2745
2745
self ._default_executor = executor
2746
2746
2747
2747
return aio_wrap_future(executor.submit(func, * args), loop = self )
You can’t perform that action at this time.
0 commit comments