Skip to content

Commit

Permalink
Merge pull request #5440 from hypothesis/fix-unicode-issue
Browse files Browse the repository at this point in the history
Convert unicode to utf-8 for NewRelic reporting
  • Loading branch information
Hannah Stepanek committed Dec 3, 2018
2 parents 8c47474 + 6b8f371 commit 1a4abfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion h/views/api/annotations.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,4 +218,4 @@ def _record_search_api_usage_metrics(
if k in params:
# The New Relic Query Language does not permit _ at the begining
# and offset is a reserved key word.
record_param("es_{}".format(k), str(params[k]))
record_param("es_{}".format(k), params[k])

0 comments on commit 1a4abfd

Please sign in to comment.