forked from locustio/locust
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sync with fork #1
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
… exiting (--task-finish-wait-time)
…s and "only async". Add test for master total stats with none response times.
…-finish-wait-time # Conflicts: # locust/main.py
…gether with high number of slave nodes
Should hopefully help resolve #1116
URL names (for stats) were not HTML-escaped in the dashboard. This made names with angle brackets disappear. For example: ``` self.client.get(url, name='/some-resource/upload/<uuid>') ``` would show up as `/some-resource/upload/` instead of `/some-resource/upload/<uuid>` which is confusing. I added new key to /stats/request - "safe_name" - so that escaping is on the server side and javascript has less logic.
Actually cgi.escape is still available in Python3.7, but is deprecated. So going forward, it's safer to import escape from html. I disabled escaping quotes (quote=False) for consistency and because it's not needed for this purpose.
Escape HTML entities in endpoint names #374
…’t actually a sum of the individual rows. Fixes #629.
…e locust object from LocustRunner.stop(),I pass the locust object to spawn() instead of the locust class.
…-finish-wait-time
…-finish-wait-time
…pare the class with type(g.args[0])
…hat in tests to avoid random test failures due to unavailable port
Allow None response time for requests
…ing) Added test case with use of TaskSet.interrupt(), made sure we actually terminate when that happens.
…ace it is really needed.
…l variables do just fine, use class variables of inner class instead of outer one)
Add an option (--stop-timeout) to allow tasks to finish running their iteration before exiting
…xamples fix self.client call in code examples
ajt89
pushed a commit
that referenced
this pull request
Sep 14, 2022
…ng-test Added check to swarm for class picker. Uses pre selected user classes if test is already running
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.