locust 2.27.1.dev40__py3-none-any.whl → 2.27.1.dev46__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/rpc/zmqrpc.py +3 -1
- {locust-2.27.1.dev40.dist-info → locust-2.27.1.dev46.dist-info}/METADATA +1 -1
- {locust-2.27.1.dev40.dist-info → locust-2.27.1.dev46.dist-info}/RECORD +9 -9
- {locust-2.27.1.dev40.dist-info → locust-2.27.1.dev46.dist-info}/LICENSE +0 -0
- {locust-2.27.1.dev40.dist-info → locust-2.27.1.dev46.dist-info}/WHEEL +0 -0
- {locust-2.27.1.dev40.dist-info → locust-2.27.1.dev46.dist-info}/entry_points.txt +0 -0
- {locust-2.27.1.dev40.dist-info → locust-2.27.1.dev46.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.27.1.
|
16
|
-
__version_tuple__ = version_tuple = (2, 27, 1, '
|
15
|
+
__version__ = version = '2.27.1.dev46'
|
16
|
+
__version_tuple__ = version_tuple = (2, 27, 1, 'dev46')
|
locust/argument_parser.py
CHANGED
@@ -723,7 +723,7 @@ Typically ONLY these options (and --locustfile) need to be specified on workers,
|
|
723
723
|
dest="stop_timeout",
|
724
724
|
metavar="<number>",
|
725
725
|
default="0",
|
726
|
-
help="Number of seconds to wait for a simulated user to complete any executing task before exiting. Default is to terminate immediately.
|
726
|
+
help="Number of seconds to wait for a simulated user to complete any executing task before exiting. Default is to terminate immediately. When running distributed, this only needs to be specified on the master.",
|
727
727
|
env_var="LOCUST_STOP_TIMEOUT",
|
728
728
|
)
|
729
729
|
other_group.add_argument(
|
locust/rpc/zmqrpc.py
CHANGED
@@ -4,6 +4,7 @@ from locust.util.exception_handler import retry
|
|
4
4
|
import msgpack.exceptions as msgerr
|
5
5
|
import zmq.error as zmqerr
|
6
6
|
import zmq.green as zmq
|
7
|
+
from urllib3.util.connection import HAS_IPV6
|
7
8
|
|
8
9
|
from .protocol import Message
|
9
10
|
|
@@ -15,7 +16,8 @@ class BaseSocket:
|
|
15
16
|
|
16
17
|
self.socket.setsockopt(zmq.TCP_KEEPALIVE, 1)
|
17
18
|
self.socket.setsockopt(zmq.TCP_KEEPALIVE_IDLE, 30)
|
18
|
-
|
19
|
+
if HAS_IPV6:
|
20
|
+
self.socket.setsockopt(zmq.IPV6, 1)
|
19
21
|
|
20
22
|
@retry()
|
21
23
|
def send(self, msg):
|
@@ -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=kdz4Rd1CB2NoZEW2KHKBdghu19U18KRRYyT5focKNpE,428
|
4
|
+
locust/argument_parser.py,sha256=VVhInNMKaisjiywQ7H43ooONpHe1Ve1JmftHgnQnRfY,28715
|
5
5
|
locust/clients.py,sha256=YKuAyMAbxs8_-w7XJw0hc67KFBNNLxibsw6FwiS01Q8,14781
|
6
6
|
locust/debug.py,sha256=We6Z9W0btkKSc7PxWmrZx-xMynvOOsKhG6jmDgQin0g,5134
|
7
7
|
locust/dispatch.py,sha256=vYh0QEDFgJ3hY0HgSk-EiNO7IP9ffzXF_Et8wB9JvsI,16995
|
@@ -21,7 +21,7 @@ locust/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
21
|
locust/contrib/fasthttp.py,sha256=vByPepw35DF84qZ2xK89yHgjOA_8btV0wig_rSR6p4g,26757
|
22
22
|
locust/rpc/__init__.py,sha256=nVGoHWFQxZjnhCDWjbgXIbmFbN9sizAjkhvSs9_642c,58
|
23
23
|
locust/rpc/protocol.py,sha256=n-rb3GZQcAlldYDj4E4GuFGylYj_26GSS5U29meft5Y,1282
|
24
|
-
locust/rpc/zmqrpc.py,sha256=
|
24
|
+
locust/rpc/zmqrpc.py,sha256=AAY6w7wSFHsW34qqN28666boHFf6dTSAXPQJnAO6iUI,2707
|
25
25
|
locust/test/__init__.py,sha256=CaVC4yA4DnCO8EY3LbedPHFg86a9Lqlpe92JuiX3THw,396
|
26
26
|
locust/test/fake_module1_for_env_test.py,sha256=dzGYWCr1SSkd8Yyo68paUNrCNW7YY_QgjRb7sM37gG0,164
|
27
27
|
locust/test/fake_module2_for_env_test.py,sha256=dzGYWCr1SSkd8Yyo68paUNrCNW7YY_QgjRb7sM37gG0,164
|
@@ -70,9 +70,9 @@ locust/webui/dist/report.html,sha256=sOdZZVgZbqgu86BBCSQf3uQUYXgmgSnXF32JpnyAII8
|
|
70
70
|
locust/webui/dist/assets/favicon.ico,sha256=IUl-rYqfpHdV38e-s0bkmFIeLS-n3Ug0DQxk-h202hI,8348
|
71
71
|
locust/webui/dist/assets/index-941b6e82.js,sha256=G3n5R81Svt0HzbWaV3AV20jLWGLr4X50UZ-Adu2KcxU,1645614
|
72
72
|
locust/webui/dist/assets/logo.png,sha256=EIVPqr6wE_yqguHaqFHIsH0ZACLSrvNWyYO7PbyIj4w,19299
|
73
|
-
locust-2.27.1.
|
74
|
-
locust-2.27.1.
|
75
|
-
locust-2.27.1.
|
76
|
-
locust-2.27.1.
|
77
|
-
locust-2.27.1.
|
78
|
-
locust-2.27.1.
|
73
|
+
locust-2.27.1.dev46.dist-info/LICENSE,sha256=78XGpIn3fHVBfaxlPNUfjVufSN7QsdhpJMRJHv2AFpo,1095
|
74
|
+
locust-2.27.1.dev46.dist-info/METADATA,sha256=sBPX2QDUsPyBzRqQcZrAuFkyroFyaYaHIy9e-DC9W-c,7264
|
75
|
+
locust-2.27.1.dev46.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
76
|
+
locust-2.27.1.dev46.dist-info/entry_points.txt,sha256=RAdt8Ku-56m7bFjmdj-MBhbF6h4NX7tVODR9QNnOg0E,44
|
77
|
+
locust-2.27.1.dev46.dist-info/top_level.txt,sha256=XSsjgPA8Ggf9TqKVbkwSqZFuPlZ085X13M9orDycE20,7
|
78
|
+
locust-2.27.1.dev46.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|