Skip to content

Commit

Permalink
style: lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharmath committed Sep 22, 2024
1 parent fc30fea commit 508597b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tailcall-tracker/src/tracker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,10 @@ mod tests {

#[tokio::test]
async fn test_tracker() {
if let Err(e) = TRACKER.dispatch(EventKind::Command("ping".to_string())).await {
if let Err(e) = TRACKER
.dispatch(EventKind::Command("ping".to_string()))
.await
{
panic!("Tracker dispatch error: {:?}", e);
}
}
Expand Down

1 comment on commit 508597b

@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 11.77ms 4.33ms 137.81ms 85.46%
Req/Sec 2.16k 266.31 2.71k 82.50%

257934 requests in 30.03s, 1.29GB read

Requests/sec: 8587.96

Transfer/sec: 44.08MB

Please sign in to comment.