locust 2.29.2.dev59__py3-none-any.whl → 2.29.2.dev61__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/__init__.py +8 -2
- locust/_version.py +2 -2
- {locust-2.29.2.dev59.dist-info → locust-2.29.2.dev61.dist-info}/METADATA +1 -1
- {locust-2.29.2.dev59.dist-info → locust-2.29.2.dev61.dist-info}/RECORD +7 -7
- {locust-2.29.2.dev59.dist-info → locust-2.29.2.dev61.dist-info}/LICENSE +0 -0
- {locust-2.29.2.dev59.dist-info → locust-2.29.2.dev61.dist-info}/WHEEL +0 -0
- {locust-2.29.2.dev59.dist-info → locust-2.29.2.dev61.dist-info}/entry_points.txt +0 -0
locust/__init__.py
CHANGED
@@ -10,11 +10,17 @@ if os.getenv("LOCUST_PLAYWRIGHT", None):
|
|
10
10
|
# dont show a massive callstack if trio is not installed
|
11
11
|
os._exit(1)
|
12
12
|
|
13
|
-
from gevent import monkey
|
14
|
-
|
15
13
|
if not os.getenv("LOCUST_SKIP_MONKEY_PATCH", None):
|
14
|
+
from gevent import monkey, queue
|
15
|
+
|
16
16
|
monkey.patch_all()
|
17
17
|
|
18
|
+
if not os.getenv("LOCUST_SKIP_URLLIB3_PATCH", None):
|
19
|
+
import urllib3
|
20
|
+
|
21
|
+
urllib3.connectionpool.ConnectionPool.QueueCls = queue.LifoQueue
|
22
|
+
# https://github.com/locustio/locust/issues/2812
|
23
|
+
|
18
24
|
from ._version import version as __version__
|
19
25
|
from .contrib.fasthttp import FastHttpUser
|
20
26
|
from .debug import run_single_user
|
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.29.2.
|
17
|
+
__version__ = "2.29.2.dev61"
|
18
18
|
version = __version__
|
19
|
-
__version_tuple__ = (2, 29, 2, "
|
19
|
+
__version_tuple__ = (2, 29, 2, "dev61")
|
20
20
|
version_tuple = __version_tuple__
|
@@ -1,6 +1,6 @@
|
|
1
|
-
locust/__init__.py,sha256=
|
1
|
+
locust/__init__.py,sha256=Jit8eNUrwuMLqavyFvMZr69e61DILq_KB4yT4MciScw,1681
|
2
2
|
locust/__main__.py,sha256=vBQ82334kX06ImDbFlPFgiBRiLIinwNk3z8Khs6hd74,31
|
3
|
-
locust/_version.py,sha256=
|
3
|
+
locust/_version.py,sha256=CsDjFltZ1mHa7wnjz3ijsbkHb2QLfexWyY49sL_fc6k,460
|
4
4
|
locust/argument_parser.py,sha256=sjQoJ1NTac9LdNYT7zn8RajlWqBQs8YFNv6uRExb2gg,28941
|
5
5
|
locust/clients.py,sha256=OHPv6hBAt4gt3HI67yqyT1qrSsF8uMdCwIRu0kIsRWI,19491
|
6
6
|
locust/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -42,8 +42,8 @@ locust/webui/dist/assets/logo.png,sha256=EIVPqr6wE_yqguHaqFHIsH0ZACLSrvNWyYO7Pby
|
|
42
42
|
locust/webui/dist/auth.html,sha256=HamHJWmT8bp12TsqVY8C0C04cmWfmJQ6FenEDc3PlrQ,501
|
43
43
|
locust/webui/dist/index.html,sha256=qdW8cuWia21jjLSgLodM1vqhFLo_QIGjAE1ncYCLU2c,507
|
44
44
|
locust/webui/dist/report.html,sha256=sOdZZVgZbqgu86BBCSQf3uQUYXgmgSnXF32JpnyAII8,513
|
45
|
-
locust-2.29.2.
|
46
|
-
locust-2.29.2.
|
47
|
-
locust-2.29.2.
|
48
|
-
locust-2.29.2.
|
49
|
-
locust-2.29.2.
|
45
|
+
locust-2.29.2.dev61.dist-info/LICENSE,sha256=78XGpIn3fHVBfaxlPNUfjVufSN7QsdhpJMRJHv2AFpo,1095
|
46
|
+
locust-2.29.2.dev61.dist-info/METADATA,sha256=qf7-SiTqELLeVLl-6NTxUvdHLGlqFYvTiRGkEYSQryo,7679
|
47
|
+
locust-2.29.2.dev61.dist-info/WHEEL,sha256=HBsDV7Hj4OTiS1GX6ua7iQXUQTB9UHftbBxr7Q8Xm9c,110
|
48
|
+
locust-2.29.2.dev61.dist-info/entry_points.txt,sha256=RhIxlLwU_Ae_WjimS5COUDLagdCh6IOMyLtgaQxNmlM,43
|
49
|
+
locust-2.29.2.dev61.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|