We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a76828c + 8003f66 commit 767caf0Copy full SHA for 767caf0
tests/performance/locustfiles/functions/function_map_load_test.py
@@ -23,6 +23,7 @@
23
)
24
25
_MAX_NJOBS: Final[int] = 50
26
+_REQUEST_TIMEOUT: Final[int] = 10 * 60 # 10 minutes request timeout for map endpoint
27
28
29
# Register the custom argument with Locust's parser
@@ -55,6 +56,9 @@ def _(parser: LocustArgumentParser) -> None:
55
56
57
58
class WebApiUser(OsparcWebUserBase):
59
+ network_timeout = _REQUEST_TIMEOUT
60
+ connection_timeout = _REQUEST_TIMEOUT
61
+
62
@task
63
def map_function(self) -> None:
64
0 commit comments