1
0
mirror of https://github.com/gilbertchen/duplicacy synced 2025-12-16 00:03:34 +00:00

Merge branch 'master' into memory_optimization

This commit is contained in:
Gilbert Chen
2022-04-07 23:26:14 -04:00
4 changed files with 50 additions and 61 deletions

View File

@@ -235,12 +235,12 @@ func TestBackupManager(t *testing.T) {
dataShards := 0
parityShards := 0
if testErasureCoding {
if *testErasureCoding {
dataShards = 5
parityShards = 2
}
if testFixedChunkSize {
if *testFixedChunkSize {
if !ConfigStorage(storage, 16384, 100, 64*1024, 64*1024, 64*1024, password, nil, false, "", dataShards, parityShards) {
t.Errorf("Failed to initialize the storage")
}