We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a366503 commit 12f9454Copy full SHA for 12f9454
src/client.rs
@@ -17,7 +17,7 @@ use crate::util::KeyValueVecKeyPrinter;
17
18
const APPLICATION_OCTET_STREAM: &str = "application/octet-stream";
19
const DEFAULT_TIMEOUT_SECS: u64 = 10;
20
-const MAX_RESPONSE_BODY_SIZE: usize = 500 * 1024 * 1024; // 500 MiB
+const MAX_RESPONSE_BODY_SIZE: usize = 1024 * 1024 * 1024; // 1GB
21
const DEFAULT_CLIENT_CAPACITY: usize = 10;
22
23
/// Thin-client to access a hosted instance of Versioned Storage Service (VSS).
0 commit comments