-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Return 408 Request Timeout on handler timeout instead of the socket disconnecting * Attempt to produce a HTTP response for any SaphirError. * Log SaphirError even when failing to produce a HTTP response. * Cargo fmt * Cargo clippy * Remove State alteration mistakenly commited * Lighter context clone without state for error * Remove runtime branching of timeout, resolve it at server start instead * Cargo fmt + clippy * Properly select timeout handling on server start and not on each connection.
- Loading branch information
1 parent
1b0c278
commit 31e2258
Showing
5 changed files
with
194 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "saphir" | ||
version = "2.7.3" | ||
version = "2.7.4" | ||
edition = "2018" | ||
authors = ["Richer Archambault <[email protected]>"] | ||
description = "Fully async-await http server framework" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.