From 4dc409ff5d3e04ef70f9d888e1cec69a972431dd Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 3 Jul 2023 19:00:19 +0530 Subject: [PATCH] Increase MaxBlockSize --- tools/rsync/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/rsync/api.go b/tools/rsync/api.go index 4fd776f6a..a85b36abd 100644 --- a/tools/rsync/api.go +++ b/tools/rsync/api.go @@ -14,7 +14,7 @@ import ( var _ = fmt.Print -const MaxBlockSize int = 256 * 1024 +const MaxBlockSize int = 1024 * 1024 // sqrt of 1TB type StrongHashType uint16 type WeakHashType uint16