Skip to content
This repository has been archived by the owner on Oct 18, 2023. It is now read-only.

Commit

Permalink
Fix v1 route path
Browse files Browse the repository at this point in the history
  • Loading branch information
LucioFranco committed Aug 2, 2023
1 parent 14e43b4 commit 772ea67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqld/src/http/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ pub async fn run_http<D: Database>(
.route("/console", get(show_console))
.route("/health", get(handle_health))
.route("/v1/stats", get(stats::handle_stats))
.route("/v1/", get(hrana_over_http_1::handle_index))
.route("/v1", get(hrana_over_http_1::handle_index))
.route("/v1/execute", post(hrana_over_http_1::handle_execute))
.route("/v1/batch", post(hrana_over_http_1::handle_batch))
.route("/v2", get(crate::hrana::http::handle_index))
Expand Down

0 comments on commit 772ea67

Please sign in to comment.