Extension developer verbatim:
Recently we encountered an issue where the post call made using send_raw_request function got stuck and it didn’t return any response and because of that onboarding was stuck in the same state for 6 days for a partner team. When they killed that job, another instance of the job came up and then onboarding was successful.
We want to know
- what can be the reasons this function might get stuck
- if there is any default timeout in this function
- Can we pass some timeout parameter
Link to our code where we are using this for making the post call - https://github.com/Azure/azure-cli-extensions/blob/cbf3346a7ecb624ad14f086f92b280a5ac927e8b/src/connectedk8s/azext_connectedk8s/_utils.py#L416
Extension developer verbatim:
Recently we encountered an issue where the post call made using
send_raw_requestfunction got stuck and it didn’t return any response and because of that onboarding was stuck in the same state for 6 days for a partner team. When they killed that job, another instance of the job came up and then onboarding was successful.We want to know
Link to our code where we are using this for making the post call - https://github.com/Azure/azure-cli-extensions/blob/cbf3346a7ecb624ad14f086f92b280a5ac927e8b/src/connectedk8s/azext_connectedk8s/_utils.py#L416