Skip to content

Commit

Permalink
Merge pull request #1945 from deronnax/fix_its_in_doc
Browse files Browse the repository at this point in the history
fix misspellings in doc (mostly "it's")
  • Loading branch information
cyberw authored Nov 28, 2021
2 parents d8c2737 + 35718e0 commit e078c31
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ Identical to previous version, but now built & deployed to Pypi using Travis.
* Fixed bug where POST requests (and other methods as well) got incorrectly reported as
GET requests, if the request resulted in a redirect.
* Added ability to download exceptions in CSV format. Download links has also been moved
to it's own tab in the web UI.
to its own tab in the web UI.
0.7.2
Expand Down Expand Up @@ -608,7 +608,7 @@ msgpack for serializing master/slave data
-----------------------------------------
Locust now uses `msgpack <http://msgpack.org/>`_ for serializing data that is sent between
a master node and it's slaves. This adresses a possible attack that can be used to execute
a master node and its slaves. This addresses a possible attack that can be used to execute
code remote, if one has access to the internal locust ports that are used for master-slave
communication. The reason for this exploit was due to the fact that pickle was used.
Expand Down
2 changes: 1 addition & 1 deletion docs/testing-requests-based SDK's.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Testing Requests based SDKs
=============================

If a prebuilt SDK is available for your target system. Locust has a supported pattern for integrating
it's usage into your load testing efforts.
its usage into your load testing efforts.

The only perquisite to achieve this; is that the SDK needs to have an accessible ``request.Sessions``
class.
Expand Down
4 changes: 2 additions & 2 deletions docs/writing-a-locustfile.rst
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ We've declared two tasks by decorating two methods with ``@task``, one of which
When our ``QuickstartUser`` runs it'll pick one of the declared tasks - in this case either ``hello_world`` or
``view_items`` - and execute it. Tasks are picked at random, but you can give them different weighting. The above
configuration will make Locust three times more likely to pick ``view_items`` than ``hello_world``. When a task has
finished executing, the User will then sleep during it's wait time (in this case between 1 and 5 seconds).
After it's wait time it'll pick a new task and keep repeating that.
finished executing, the User will then sleep during its wait time (in this case between 1 and 5 seconds).
After its wait time it'll pick a new task and keep repeating that.

Note that only methods decorated with ``@task`` will be picked, so you can define your own internal helper methods any way you like.

Expand Down

0 comments on commit e078c31

Please sign in to comment.