Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
karatakis committed Dec 12, 2024
1 parent a1e6b83 commit ed65705
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/mustache/parse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ fn parse_expression(input: &str) -> IResult<&str, Segment> {
seg
} else if let Ok(jq) = JqTransform::try_new(template) {
Segment::JqTransform(jq)
} else {
} else {
Segment::Literal(template.to_string())

Check warning on line 30 in src/core/mustache/parse.rs

View check run for this annotation

Codecov / codecov/patch

src/core/mustache/parse.rs#L30

Added line #L30 was not covered by tests
}
}),
Expand Down

1 comment on commit ed65705

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Running 30s test @ http://localhost:8000/graphql

4 threads and 100 connections

Thread Stats Avg Stdev Max +/- Stdev
Latency 4.09ms 2.31ms 58.27ms 86.45%
Req/Sec 6.34k 0.87k 7.45k 94.25%

757222 requests in 30.01s, 3.80GB read

Requests/sec: 25230.73

Transfer/sec: 129.50MB

Please sign in to comment.