Skip to content

Commit 12f9454

Browse files
committed
f Bump max body size to 1GB
1 parent a366503 commit 12f9454

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/client.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ use crate::util::KeyValueVecKeyPrinter;
1717

1818
const APPLICATION_OCTET_STREAM: &str = "application/octet-stream";
1919
const DEFAULT_TIMEOUT_SECS: u64 = 10;
20-
const MAX_RESPONSE_BODY_SIZE: usize = 500 * 1024 * 1024; // 500 MiB
20+
const MAX_RESPONSE_BODY_SIZE: usize = 1024 * 1024 * 1024; // 1GB
2121
const DEFAULT_CLIENT_CAPACITY: usize = 10;
2222

2323
/// Thin-client to access a hosted instance of Versioned Storage Service (VSS).

0 commit comments

Comments
 (0)