I'm getting error when using self signed SSL #1962
-
I'm running app with self signed open SSL. There are multiple issues.
I'm running Flask app in a thread as it's included in another app. Flask app works as an interface for a voice assistant app.
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
I think the problem here is that you are not following the rules for writing an asynchronous application, either with eventlet or gevent. My suggestion is that if you don't want to worry about learning a new programming paradigm you use the |
Beta Was this translation helpful? Give feedback.
-
Thank you for the response. With |
Beta Was this translation helpful? Give feedback.
I think the problem here is that you are not following the rules for writing an asynchronous application, either with eventlet or gevent. My suggestion is that if you don't want to worry about learning a new programming paradigm you use the
threading
async mode, which should be compatible with your current design.