Skip to content

Commit

Permalink
fix: remove redundant comments
Browse files Browse the repository at this point in the history
  • Loading branch information
rymnc committed Oct 8, 2024
1 parent 131167b commit aa651b8
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions crates/fuel-core/src/graphql_api/api_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -222,12 +222,10 @@ where
.finish();

let unthrottled_routes = Router::new()
// we shouldn't throttle these requests
.route("/v1/health", get(health))
.route("/health", get(health));

let throttled_routes =
// we should throttle these requests
Router::new()
.route("/v1/playground", get(graphql_playground))
.route("/v1/graphql", post(graphql_handler).options(ok))
Expand Down

0 comments on commit aa651b8

Please sign in to comment.