Skip to content

Commit

Permalink
Address PR comment
Browse files Browse the repository at this point in the history
  • Loading branch information
dliappis committed Feb 19, 2019
1 parent 70639ce commit b0d6c41
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 @@ -593,7 +593,7 @@ def __call__(self, es, params):
def request_body_query(self, es, params):
request_params = params.get("request-params", {})
if "cache" in params:
request_params["request_cache"] = str(params["cache"]).lower() if isinstance(params["cache"], bool) else params["cache"]
request_params["request_cache"] = str(params["cache"]).lower()
r = es.search(
index=params.get("index", "_all"),
doc_type=params.get("type"),
Expand Down

0 comments on commit b0d6c41

Please sign in to comment.