Skip to content

Commit

Permalink
c
Browse files Browse the repository at this point in the history
  • Loading branch information
Larkooo committed Mar 3, 2025
1 parent 3385a3c commit 6d05a84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/torii/server/src/proxy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ impl Proxy {
async fn handle(
client_ip: IpAddr,
req: Request<Body>,
handlers: &Vec<Box<dyn Handler>>,
handlers: &[Box<dyn Handler>],

Check warning on line 163 in crates/torii/server/src/proxy.rs

View check run for this annotation

Codecov / codecov/patch

crates/torii/server/src/proxy.rs#L163

Added line #L163 was not covered by tests
) -> Result<Response<Body>, Infallible> {
for handler in handlers.iter() {

Check warning on line 165 in crates/torii/server/src/proxy.rs

View check run for this annotation

Codecov / codecov/patch

crates/torii/server/src/proxy.rs#L165

Added line #L165 was not covered by tests
if handler.should_handle(&req) {
Expand Down

0 comments on commit 6d05a84

Please sign in to comment.