Complete
Details
Assignee
CalebCalebReporter
CalebCalebLabels
Impact
HighComponents
Fix versions
Affects versions
Priority
Low
Details
Details
Assignee
Caleb
CalebReporter
Caleb
CalebLabels
Impact
High
Components
Fix versions
Affects versions
Priority
More fields
More fields
More fields
Katalon Platform
Katalon Platform
Katalon Platform
Created March 9, 2021 at 6:14 PM
Updated July 1, 2022 at 5:13 PM
Resolved March 10, 2021 at 1:34 PM
There is a known regression (identified upstream) wrt to threads and python38. Running the below code will randomly hang. Out of testing it 52 times, it hung ~19.2% of the time. I confirmed that this problem also exists on 3.8.7 which is what 12.0-U3 will have. I have also confirmed that backporting 9ad58acbe8b90b4d0f2d2e139e38bb5aa32b7fb6 and 4d96b4635aeff1b8ad41d41422ce808ce0b971c8 builds cleanly and fixes the hang. I've also got an internal employee running the custom truenas version without any issues.
from multiprocessing.pool import ThreadPool
from datetime import datetime
class Broken(object):
def _init_(self):
self.pool = ThreadPool()
def _del_(self):
self.pool.close()
self.pool.join()
ohno = Broken()
date = datetime.now()
print(str(date), ohno)