Skip to content

Commit

Permalink
fix: add post method for parse_query
Browse files Browse the repository at this point in the history
  • Loading branch information
sunng87 committed Oct 26, 2024
1 parent f349cd2 commit e538218
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/servers/src/http.rs
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,7 @@ impl HttpServer {
.route("/query_range", routing::post(range_query).get(range_query))
.route("/labels", routing::post(labels_query).get(labels_query))
.route("/series", routing::post(series_query).get(series_query))
.route("/parse_query", routing::get(parse_query))
.route("/parse_query", routing::post(parse_query).get(parse_query))
.route(
"/label/:label_name/values",
routing::get(label_values_query),
Expand Down

0 comments on commit e538218

Please sign in to comment.