Replies: 2 comments 3 replies
-
Why? The reason why I configured it to allow one endpoint at a time from being evaluated concurrently is that more than that may provide inaccurate results (e.g. response time). I'm not against considering it, but I'd like your reasoning |
Beta Was this translation helpful? Give feedback.
3 replies
-
While working on #1239, I decided this was going to be a necessity. It will be implemented alongside suites. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Currently, we have just a bool flag that controls the parallel execution.
The idea is to replace that flag with a semaphore and init it from the user's config.
Something like:
Where
X
may be one of:0
- Disable that feature (disable-monitoring-lock:true as for now)1
- Use one concurrent request at a time (disable-monitoring-lock:false as for now)N
- The actual number to use.As for the implementation perspective, it will require changing some default values/config parsing AND replacing current mutex with the actual semaphore.
Beta Was this translation helpful? Give feedback.
All reactions