Skip to content

Commit 7e6549e

Browse files
authored
fix dropshot api, bump v (#206)
1 parent ae69d1f commit 7e6549e

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

Cargo.lock

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ clap = { version = "4.5.21", features = ["cargo", "derive", "env", "unicode"] }
3030
console-subscriber = { version = "0", optional = true }
3131
dashmap = "6.1.0"
3232
delouse = { version = "0.1", optional = true }
33-
dropshot = "0.13"
33+
dropshot = "0.14"
3434
futures = "0.3.28"
3535
futures-util = "0.3.31"
3636
http = "1"

src/server/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ pub async fn create_server(
5858

5959
let config_dropshot = ConfigDropshot {
6060
bind_address: bind.parse()?,
61-
request_body_max_bytes: 107374182400, // 100 Gigiabytes.
61+
default_request_body_max_bytes: 107374182400, // 100 Gigiabytes.
6262
default_handler_task_mode: dropshot::HandlerTaskMode::CancelOnDisconnect,
6363
log_headers: Default::default(),
6464
};

0 commit comments

Comments
 (0)