Skip to content

Commit 21078e6

Browse files
author
=
committed
Update
1 parent 5bb9268 commit 21078e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ThreadPoolExecutorPlus/thread.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def __init__(self , name , executor_reference, work_queue, initializer, initargs
8080
def run(self):
8181
if self._initializer is not None:
8282
try:
83-
self._initializer(*initargs)
83+
self._initializer(*self._initargs)
8484
except BaseException:
8585
_base.LOGGER.critical('Exception in initializer:', exc_info=True)
8686
executor = self._executor_reference()

0 commit comments

Comments
 (0)