locust 2.36.3.dev1__py3-none-any.whl → 2.36.3.dev5__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 CHANGED
@@ -17,5 +17,5 @@ __version__: str
17
17
  __version_tuple__: VERSION_TUPLE
18
18
  version_tuple: VERSION_TUPLE
19
19
 
20
- __version__ = version = '2.36.3.dev1'
21
- __version_tuple__ = version_tuple = (2, 36, 3, 'dev1')
20
+ __version__ = version = '2.36.3.dev5'
21
+ __version_tuple__ = version_tuple = (2, 36, 3, 'dev5')
locust/stats.py CHANGED
@@ -598,7 +598,7 @@ class StatsEntry:
598
598
  """
599
599
  if not self.use_response_times_cache:
600
600
  raise ValueError(
601
- "StatsEntry.use_response_times_cache must be set to True if we should be able to calculate the _current_ response time percentile"
601
+ "StatsEntry.use_response_times_cache must be set to True to calculate the _current_ response time percentile"
602
602
  )
603
603
  # First, we want to determine which of the cached response_times dicts we should
604
604
  # use to get response_times for approximately 10 seconds ago.