locust 2.33.3.dev9__py3-none-any.whl → 2.33.3.dev13__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.33.3.dev9'
21
- __version_tuple__ = version_tuple = (2, 33, 3, 'dev9')
20
+ __version__ = version = '2.33.3.dev13'
21
+ __version_tuple__ = version_tuple = (2, 33, 3, 'dev13')
locust/web.py CHANGED
@@ -628,7 +628,8 @@ class WebUI:
628
628
  session["auth_info"] = None
629
629
  return login_required(view_func)(*args, **kwargs)
630
630
  except Exception as e:
631
- return f"Locust auth exception: {e} See https://docs.locust.io/en/stable/extending-locust.html#adding-authentication-to-the-web-ui for configuring authentication."
631
+ logger.exception("Locust auth exception")
632
+ return f"Locust auth exception: {e}<br/><br/>See https://docs.locust.io/en/stable/extending-locust.html#adding-authentication-to-the-web-ui for configuring authentication, or disable login by removing --web-login argument."
632
633
  else:
633
634
  return view_func(*args, **kwargs)
634
635