Skip to content
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

Typo fix #1051

Merged
merged 1 commit into from
Jul 22, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion locust/core.py
Original file line number Diff line number Diff line change
@@ -469,7 +469,7 @@ class TaskSequence(TaskSet):
*max_wait* milliseconds. It will then schedule the `index + 1 % len(tasks)` task for execution and so on.

TaskSequence can be nested with TaskSet, which means that a TaskSequence's *tasks* attribute can contain
TaskSet instances as well as other TaskSequence instances. If the nested TaskSet it scheduled to be executed, it will be
TaskSet instances as well as other TaskSequence instances. If the nested TaskSet is scheduled to be executed, it will be
instantiated and called from the current executing TaskSet. Execution in the
currently running TaskSet will then be handed over to the nested TaskSet which will
continue to run until it throws an InterruptTaskSet exception, which is done when