1
戻りませんPythonは、私は以下のように定義された2つの機能を持っているバック
result = join_group_thread(client, link)
:私はこのような
join_group_thread
呼び出す
main()
で
def join_group(client, params, queue):
try:
response = client.invoke(ImportChatInviteRequest(params))
except Exception as e:
response = str(e).replace("'","")
queue.put(response)
thread_1.join(10)
に10秒を設定したので、result = join_group_thread(client, link)
には最大で10秒かかることが予想されますが、時には永遠にハングすることがあります。
説明はありますか? the docsから