locust 2.24.2.dev17__py3-none-any.whl → 2.24.2.dev19__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/argument_parser.py +1 -1
- locust/main.py +3 -0
- {locust-2.24.2.dev17.dist-info → locust-2.24.2.dev19.dist-info}/METADATA +1 -1
- {locust-2.24.2.dev17.dist-info → locust-2.24.2.dev19.dist-info}/RECORD +9 -9
- {locust-2.24.2.dev17.dist-info → locust-2.24.2.dev19.dist-info}/LICENSE +0 -0
- {locust-2.24.2.dev17.dist-info → locust-2.24.2.dev19.dist-info}/WHEEL +0 -0
- {locust-2.24.2.dev17.dist-info → locust-2.24.2.dev19.dist-info}/entry_points.txt +0 -0
- {locust-2.24.2.dev17.dist-info → locust-2.24.2.dev19.dist-info}/top_level.txt +0 -0
locust/_version.py
CHANGED
@@ -12,5 +12,5 @@ __version__: str
|
|
12
12
|
__version_tuple__: VERSION_TUPLE
|
13
13
|
version_tuple: VERSION_TUPLE
|
14
14
|
|
15
|
-
__version__ = version = '2.24.2.
|
16
|
-
__version_tuple__ = version_tuple = (2, 24, 2, '
|
15
|
+
__version__ = version = '2.24.2.dev19'
|
16
|
+
__version_tuple__ = version_tuple = (2, 24, 2, 'dev19')
|
locust/argument_parser.py
CHANGED
@@ -559,7 +559,7 @@ def setup_parser_arguments(parser):
|
|
559
559
|
"--legacy-ui",
|
560
560
|
default=False,
|
561
561
|
action="store_true",
|
562
|
-
help="Use the legacy frontend for the web UI",
|
562
|
+
help="Use the legacy frontend for the web UI (deprecated, support will be removed soon)",
|
563
563
|
env_var="LOCUST_LEGACY_UI",
|
564
564
|
)
|
565
565
|
|
locust/main.py
CHANGED
@@ -182,6 +182,9 @@ def main():
|
|
182
182
|
sys.stderr.write("[DEPRECATED] The --hatch-rate parameter has been renamed --spawn-rate\n")
|
183
183
|
options.spawn_rate = options.hatch_rate
|
184
184
|
|
185
|
+
if options.legacy_ui:
|
186
|
+
sys.stderr.write("[DEPRECATED] The legacy UI is deprecated and will be removed soon\n")
|
187
|
+
|
185
188
|
# setup logging
|
186
189
|
if not options.skip_log_setup:
|
187
190
|
if options.loglevel.upper() in ["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"]:
|
@@ -1,7 +1,7 @@
|
|
1
1
|
locust/__init__.py,sha256=g6oA-Ba_hs3gLWVf5MKJ1mvfltI8MFnDWG8qslqm8yg,1402
|
2
2
|
locust/__main__.py,sha256=vBQ82334kX06ImDbFlPFgiBRiLIinwNk3z8Khs6hd74,31
|
3
|
-
locust/_version.py,sha256=
|
4
|
-
locust/argument_parser.py,sha256=
|
3
|
+
locust/_version.py,sha256=5NBvVO4oj5bwsW9o1m12F0zB6RR_oGxoklErgHdVzNA,428
|
4
|
+
locust/argument_parser.py,sha256=W0X5t-9BFq1DtOBgTBbMoDYBIXfWEqUD7CZ5Rn-i6LQ,32016
|
5
5
|
locust/clients.py,sha256=o3G9welWb-zhgDUM5TKnMVFMJckr_m0FI8Dxn3OtBUA,14810
|
6
6
|
locust/debug.py,sha256=We6Z9W0btkKSc7PxWmrZx-xMynvOOsKhG6jmDgQin0g,5134
|
7
7
|
locust/dispatch.py,sha256=mn-xVqjLUzRtN91hEqWE2VnVvieQNo97fTVSdMwCDV8,18605
|
@@ -11,7 +11,7 @@ locust/exception.py,sha256=jGgJ32ubuf4pWdlaVOkbh2Y0LlG0_DHi-lv3ib8ppOE,1791
|
|
11
11
|
locust/html.py,sha256=S2vucumZbGADt0PKv__Aow_kt-MpbCCxBqMO9QiRcUg,5718
|
12
12
|
locust/input_events.py,sha256=QBO6Kb0bmNLZHaIvcBORk57CvCJHAYVB5ILfpV8Lrfc,3292
|
13
13
|
locust/log.py,sha256=2IVp9YL4ZPfWdj3sBFuOHfgneg3g7m7tUGR-sy2s3E8,3155
|
14
|
-
locust/main.py,sha256=
|
14
|
+
locust/main.py,sha256=Yi0vMJ3HVNqmjbZXBwaK8N-SbzHyaGRnr46hgxpkP0M,28989
|
15
15
|
locust/py.typed,sha256=gkWLl8yD4mIZnNYYAIRM8g9VarLvWmTAFeUfEbxJLBw,65
|
16
16
|
locust/runners.py,sha256=8z-axnOs3yLWjOoc91rQzQH6hp6qu3ZpkBQ_IGZeFE0,67978
|
17
17
|
locust/shape.py,sha256=t-lwBS8LOjWcKXNL7j2U3zroIXJ1b0fazUwpRYQOKXw,1973
|
@@ -95,9 +95,9 @@ locust/webui/dist/report.html,sha256=sOdZZVgZbqgu86BBCSQf3uQUYXgmgSnXF32JpnyAII8
|
|
95
95
|
locust/webui/dist/assets/favicon.ico,sha256=IUl-rYqfpHdV38e-s0bkmFIeLS-n3Ug0DQxk-h202hI,8348
|
96
96
|
locust/webui/dist/assets/index-941b6e82.js,sha256=G3n5R81Svt0HzbWaV3AV20jLWGLr4X50UZ-Adu2KcxU,1645614
|
97
97
|
locust/webui/dist/assets/logo.png,sha256=EIVPqr6wE_yqguHaqFHIsH0ZACLSrvNWyYO7PbyIj4w,19299
|
98
|
-
locust-2.24.2.
|
99
|
-
locust-2.24.2.
|
100
|
-
locust-2.24.2.
|
101
|
-
locust-2.24.2.
|
102
|
-
locust-2.24.2.
|
103
|
-
locust-2.24.2.
|
98
|
+
locust-2.24.2.dev19.dist-info/LICENSE,sha256=78XGpIn3fHVBfaxlPNUfjVufSN7QsdhpJMRJHv2AFpo,1095
|
99
|
+
locust-2.24.2.dev19.dist-info/METADATA,sha256=6l_ZV4AdLiT2K9xxaKGV8ooeLqxM3iPBbYhKjjRFD8Q,7212
|
100
|
+
locust-2.24.2.dev19.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
101
|
+
locust-2.24.2.dev19.dist-info/entry_points.txt,sha256=RAdt8Ku-56m7bFjmdj-MBhbF6h4NX7tVODR9QNnOg0E,44
|
102
|
+
locust-2.24.2.dev19.dist-info/top_level.txt,sha256=XSsjgPA8Ggf9TqKVbkwSqZFuPlZ085X13M9orDycE20,7
|
103
|
+
locust-2.24.2.dev19.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|