You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I have encountered this issue while using it,tls_client will be stuck in multiprocessing, demo:
import multiprocessing
import tls_client
def start():
url = 'http://www.baidu.com'
r = tls_client.Session(
client_identifier="chrome110",
random_tls_extension_order=True
).get(url, timeout_seconds=6)
# Will not execute here and no exceptions thrown
print(r.status_code)
if __name__ == '__main__':
multiprocessing.Process(
target=start,
args=()
).start()
while True:
pass
But I can run normally under Mac
The text was updated successfully, but these errors were encountered:
python 3.10.8
tls-client 0.2.2
centos7
Hello, I have encountered this issue while using it,tls_client will be stuck in multiprocessing, demo:
But I can run normally under Mac
The text was updated successfully, but these errors were encountered: