Skip to content

Commit

Permalink
Use f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
dliappis committed Nov 20, 2020
1 parent a3cab0e commit 52f28a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esrally/driver/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -1369,7 +1369,7 @@ async def __call__(self, es, params):
preserve_existing=True)

self.logger.info("Waiting for relocation to finish for index [%s] ...", source_index)
await self._wait_for(es, source_index, "shard relocation for index [{}]".format(source_index))
await self._wait_for(es, source_index, f"shard relocation for index [{source_index}]")
self.logger.info("Shrinking [%s] to [%s].", source_index, target_index)
if "settings" not in target_body:
target_body["settings"] = {}
Expand Down

0 comments on commit 52f28a6

Please sign in to comment.