locust 2.32.3.dev20__py3-none-any.whl → 2.32.4__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
@@ -14,7 +14,7 @@ __version_tuple__: VERSION_TUPLE
14
14
  version_tuple: VERSION_TUPLE
15
15
 
16
16
 
17
- __version__ = "2.32.3.dev20"
17
+ __version__ = "2.32.4"
18
18
  version = __version__
19
- __version_tuple__ = (2, 32, 3, "dev20")
19
+ __version_tuple__ = (2, 32, 4)
20
20
  version_tuple = __version_tuple__
locust/web.py CHANGED
@@ -57,6 +57,7 @@ DEFAULT_CACHE_TIME = 2.0
57
57
  class InputField(TypedDict, total=False):
58
58
  label: str
59
59
  name: str
60
+ type: str | None
60
61
  default_value: bool | None
61
62
  choices: list[str] | None
62
63
  is_secret: bool | None
@@ -549,8 +550,7 @@ class WebUI:
549
550
  self.auth_args["info"] = session.get("auth_info", None)
550
551
 
551
552
  return render_template_from(
552
- "auth.html",
553
- auth_args=self.auth_args,
553
+ "auth.html", auth_args=self.auth_args, auth_title=self.auth_args.get("title", "Locust")
554
554
  )
555
555
 
556
556
  @app_blueprint.route("/user", methods=["POST"])