locust 2.31.9.dev8__py3-none-any.whl → 2.31.9.dev11__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 +2 -2
- locust/web.py +1 -1
- locust/webui/dist/assets/{index-C1Bs-IUT.js → index-DW9Okc6s.js} +42 -42
- locust/webui/dist/auth.html +1 -1
- locust/webui/dist/index.html +1 -1
- {locust-2.31.9.dev8.dist-info → locust-2.31.9.dev11.dist-info}/METADATA +1 -1
- {locust-2.31.9.dev8.dist-info → locust-2.31.9.dev11.dist-info}/RECORD +10 -10
- {locust-2.31.9.dev8.dist-info → locust-2.31.9.dev11.dist-info}/LICENSE +0 -0
- {locust-2.31.9.dev8.dist-info → locust-2.31.9.dev11.dist-info}/WHEEL +0 -0
- {locust-2.31.9.dev8.dist-info → locust-2.31.9.dev11.dist-info}/entry_points.txt +0 -0
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.31.9.
|
17
|
+
__version__ = "2.31.9.dev11"
|
18
18
|
version = __version__
|
19
|
-
__version_tuple__ = (2, 31, 9, "
|
19
|
+
__version_tuple__ = (2, 31, 9, "dev11")
|
20
20
|
version_tuple = __version_tuple__
|
locust/web.py
CHANGED
@@ -151,7 +151,7 @@ class WebUI:
|
|
151
151
|
error_code = getattr(error, "code", 500)
|
152
152
|
logger.log(
|
153
153
|
logging.DEBUG if error_code <= 404 else logging.ERROR,
|
154
|
-
f"UI got request for {request.path}, but it resulted in a {error_code}: {error.name}",
|
154
|
+
f"UI got request for {request.method} {request.path}, but it resulted in a {error_code}: {error.name}",
|
155
155
|
)
|
156
156
|
return make_response(error_message, error_code)
|
157
157
|
|