Skip to content

Commit

Permalink
fix(graphite): urlencode target query (#853)
Browse files Browse the repository at this point in the history
  • Loading branch information
perek authored Dec 1, 2021
1 parent 2c8693b commit 8484bc0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public interface GraphiteRemoteService {
// From https://graphite.readthedocs.io/en/1.1.2/render_api.html#
@GET("/render")
List<GraphiteResults> rangeQuery(
@Query(value = "target", encodeValue = false) String target,
@Query(value = "target", encodeValue = true) String target,
@Query("from") long from,
@Query("until") long until,
@Query("format") String format);
Expand Down

0 comments on commit 8484bc0

Please sign in to comment.