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
The requests module currently being used requires key and cert files to be stored on the filesystem.
However, since we are migrating the application to the cloud, it might be necessary to store the key and cert files in memory instead to avoid retaining sensitive customer credentials on our cloud systems.
Let's move to migrate away from requests to another modern HTTP request library and SSL library that permits in-memory key files (such as urllib3 and PyOpenSSL).
The text was updated successfully, but these errors were encountered:
The
requests
module currently being used requires key and cert files to be stored on the filesystem.However, since we are migrating the application to the cloud, it might be necessary to store the key and cert files in memory instead to avoid retaining sensitive customer credentials on our cloud systems.
Let's move to migrate away from
requests
to another modern HTTP request library and SSL library that permits in-memory key files (such asurllib3
andPyOpenSSL
).The text was updated successfully, but these errors were encountered: