locust 2.37.10.dev2__py3-none-any.whl → 2.37.11.dev2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
locust/_version.py CHANGED
@@ -17,5 +17,5 @@ __version__: str
17
17
  __version_tuple__: VERSION_TUPLE
18
18
  version_tuple: VERSION_TUPLE
19
19
 
20
- __version__ = version = '2.37.10.dev2'
21
- __version_tuple__ = version_tuple = (2, 37, 10, 'dev2')
20
+ __version__ = version = '2.37.11.dev2'
21
+ __version_tuple__ = version_tuple = (2, 37, 11, 'dev2')
locust/web.py CHANGED
@@ -662,6 +662,7 @@ class WebUI:
662
662
  all_hosts = {l.host for l in self.environment.runner.user_classes}
663
663
  if len(all_hosts) == 1:
664
664
  host = list(all_hosts)[0]
665
+ missing_host_warning = not host
665
666
  else:
666
667
  # since we have multiple User classes with different host attributes, we'll
667
668
  # inform that specifying host will override the host for all User classes