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
Describe the bug
The code generated is not able to connect through https to a server hosted behind an ALB/proxy by using the same session.
Each API request is done by executing httpx.request(....) and so all requests are session less. Being session less, the load balancer is not able to address the same server between API calls.
To Reproduce
N/A
Expected behavior
Provide into the Client class (client.py) a mean for initializing a session (If you are coming from Requests, httpx.Client() is what you can use instead of requests.Session()) and use this session in all api calls
Describe the bug
The code generated is not able to connect through https to a server hosted behind an ALB/proxy by using the same session.
Each API request is done by executing httpx.request(....) and so all requests are session less. Being session less, the load balancer is not able to address the same server between API calls.
To Reproduce
N/A
Expected behavior
Provide into the Client class (client.py) a mean for initializing a session (If you are coming from Requests, httpx.Client() is what you can use instead of requests.Session()) and use this session in all api calls
Currently it is like in API Call
after (or equivalent), it can be like
OpenAPI Spec File
N/A
Desktop (please complete the following information):
N/A
Additional context
The text was updated successfully, but these errors were encountered: