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

lower log level for unnecessary --autostart argument #2918

Merged
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
4 changes: 2 additions & 2 deletions locust/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -517,10 +517,10 @@ def ensure_user_class_name(config):
web_ui = None

if options.autostart and options.headless:
logger.warning("The --autostart argument is implied by --headless, no need to set both.")
logger.info("The --autostart argument is implied by --headless, no need to set both.")

if options.autostart and options.worker:
logger.warning("The --autostart argument has no meaning on a worker.")
logger.info("The --autostart argument has no meaning on a worker.")

def assign_equal_weights(environment, **kwargs):
environment.assign_equal_weights()
Expand Down