Skip to content

Commit

Permalink
I went a little buckwild while fixing type annotations.
Browse files Browse the repository at this point in the history
I turned on a stricter mode than what we have configured in
pyproject.toml
  • Loading branch information
favilo committed Jul 2, 2024
1 parent 2cafe29 commit 3e03eea
Show file tree
Hide file tree
Showing 6 changed files with 249 additions and 161 deletions.
2 changes: 1 addition & 1 deletion esrally/mechanic/launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def stop(self, nodes, metrics_store):
stop_watch.start()
try:
es.terminate()
es.wait(10.0)
es.wait(10)
stopped_nodes.append(node)
except psutil.NoSuchProcess:
self.logger.warning("No process found with PID [%s] for node [%s].", es.pid, node_name)
Expand Down
Loading

0 comments on commit 3e03eea

Please sign in to comment.