jasperproject / jasper-client

Client code for Jasper voice computing platform
MIT License
4.52k stars 1.01k forks source link

SSLError #682

Open ZenyoXos opened 6 years ago

ZenyoXos commented 6 years ago

Hi, got something crashing jasper, worked well, just added some file into modules, removed it, but not solving the problem, here's my crash :

From cffi callback <function _verify_callback at 0x751ce4f0>: Traceback (most recent call last): File "/usr/local/lib/python2.7/dist-packages/OpenSSL/SSL.py", line 313, in wrapper _lib.X509_up_ref(x509) AttributeError: 'module' object has no attribute 'X509_up_ref' Traceback (most recent call last): File "./../jasper.py", line 151, in app.run() File "./../jasper.py", line 121, in run conversation.handleForever() File "/root/jasper/client/conversation.py", line 31, in handleForever threshold, transcribed = self.mic.passiveListen(self.persona) File "/root/jasper/client/mic.py", line 179, in passiveListen transcribed = self.passive_stt_engine.transcribe(f) File "/root/jasper/client/stt.py", line 592, in transcribe headers=self.headers) File "/usr/local/lib/python2.7/dist-packages/requests/api.py", line 112, in post return request('post', url, data=data, json=json, kwargs) File "/usr/local/lib/python2.7/dist-packages/requests/api.py", line 58, in request return session.request(method=method, url=url, kwargs) File "/usr/local/lib/python2.7/dist-packages/requests/sessions.py", line 508, in request resp = self.send(prep, send_kwargs) File "/usr/local/lib/python2.7/dist-packages/requests/sessions.py", line 618, in send r = adapter.send(request, kwargs) File "/usr/local/lib/python2.7/dist-packages/requests/adapters.py", line 506, in send raise SSLError(e, request=request) requests.exceptions.SSLError: HTTPSConnectionPool(host='api.wit.ai', port=443): Max retries exceeded with url: /speech?v=20150101 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))

Anyone ?