mirror of
https://github.com/restic/restic.git
synced 2026-02-03 04:20:45 -05:00
fix: keep the PutBlock Size to 100 MiB
No complaints in the past.
This commit is contained in:
parent
34a94afc48
commit
e65ee3cba8
1 changed files with 1 additions and 1 deletions
|
|
@ -42,7 +42,7 @@ type Backend struct {
|
|||
}
|
||||
|
||||
const singleUploadMaxSize = 256 * 1024 * 1024
|
||||
const singleBlockMaxSize = 32 * 1024 * 1024
|
||||
const singleBlockMaxSize = 100 * 1024 * 1024
|
||||
const defaultListMaxItems = 5000
|
||||
|
||||
// make sure that *Backend implements backend.Backend
|
||||
|
|
|
|||
Loading…
Reference in a new issue