Rich Fernandez
Results
2
comments of
Rich Fernandez
I need to run 30 async queries in parallel to see if they will parse in UC with 1 minute timeout to consider it a parseable query in Unity Catalog....
@susodapop Adding the following code to my module: ```python import pickle, copyreg, ssl def save_sslcontext(obj): return obj.__class__, (obj.protocol,) copyreg.pickle(ssl.SSLContext, save_sslcontext) context = ssl.create_default_context() ``` results in the following error: ```...