Hi guys,
I just noticed that a wrong string is being used in the Code Generation Settings of cURL.
Steps to reproduce:
- Open right tab -> Code Snippet
- Choose cURL
- Click Settings Icon
Then see -> Set request timeout
Set number of milliseconds the request should wait for a response before timing out (use 0 for infinity)
This adds --max-time to the cURL which is working with seconds and not milliseconds.
More information here: https://everything.curl.dev/usingcurl/timeouts#maximum-time-allowed-to-spend
So the string should be changed to that:
Set number of seconds the request should wait for a response before timing out (use 0 for infinity)
I hope I wrote and explained it well :)
