Send all requests process stops after first request with error #517
-
Hey everyone! I'm not sure whether this is expected behavior, so I'm not opening this as an issue yet. Whenever I use the "Send All Requests" function, my requests only run until the first response with error. After that, the process seems to stop and the rest of the requests are not run. Is this a bug or expected behavior? Thank you so much for the help, I've been loving the plugin so far! More Details: In the example above, I used one of the example .http files in the docs with the wrong url endpoint on the third request to force an error. The following request did not run. ### Simple GET request
GET https://httpbin.org/get HTTP/1.1
### GET with query parameters
GET https://httpbin.org/get?name=kulala&age=25 HTTP/1.1
### POST with JSON body
POST https://httpbin.org/postasdsdf HTTP/1.1
Content-Type: application/json
{
"name": "John Doe",
"email": "[email protected]"
}
### PUT with headers
PUT https://httpbin.org/put HTTP/1.1
Content-Type: application/json
X-Custom-Header: test-value
{
"id": 1,
"status": "updated"
}
### DELETE request
DELETE https://httpbin.org/delete HTTP/1.1
### GET with multiple headers
GET https://httpbin.org/headers HTTP/1.1
Accept: application/json
User-Agent: My-Test-Client
Authorization: Bearer test-token System info System Information:
OS: Arch Linux
Kernel: 6.14.4-arch1-2
Architecture: x86_64
CPU: Intel(R) Core(TM) i5-8350U CPU @ 1.70GHz
RAM: 16GB
Graphics: Intel Corporation UHD Graphics 620 (rev 07)
Desktop Environment: Hyprland 0.48.1 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi, there! |
Beta Was this translation helpful? Give feedback.
Hi, there!
We have an option
halt_on_error
which istrue
by default, which you can change tofalse