def monkeyPatchThread(self): import types try: import thread except: import _thread as thread # Python 3 original_start_new_thread = thread.start_new_thread def patched_start_new_thread(func, *args, **kwargs): def patched_func(*args, **kwargs): import sys pydevd_tracing.SetTrace(self...
patch_thread_module(t) File"/Applications/PyCharm.app/Contents/plugins/python/helpers/pydev/_pydev_bundle/pydev_monkey.py", line817,inpatch_thread_module _original_start_new_thread= thread_module._original_start_new_thread =thread_module.start_new_thread AttributeError: module'thread'has no at...
AttributeError: module 'thread' has no attribute 'start_new_thread' 错误 解决办法:删除 .idea文件夹下面的modules.xml, 07-shunwangwork.iml
Is there an existing issue for this? I have searched the existing issues Environment - Milvus version:2.5.3 - Deployment mode(standalone or cluster):standalone - MQ type(rocksmq, pulsar or kafka): - SDK version(e.g. pymilvus v2.0.0rc2):p...