On the fs-progress branch:
Tweak the frequency of progress_func notifications in 'svnadmin verify'.
* subversion/libsvn_fs_fs/fs_fs.c
(verify_walker): Call the progress_func every 50000 rep-cache.db rows,
instead of every 1024 rows.
git-svn-id: https://svn.apache.org/repos/asf/subversion/branches/fs-progress@1148032 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/subversion/libsvn_fs_fs/fs_fs.c b/subversion/libsvn_fs_fs/fs_fs.c
index 3a80362..5262767 100644
--- a/subversion/libsvn_fs_fs/fs_fs.c
+++ b/subversion/libsvn_fs_fs/fs_fs.c
@@ -7800,7 +7800,7 @@
struct rep_state *rs;
struct rep_args *rep_args;
- if (vb->progress_func && (vb->reps_seen++ % 1024 == 0))
+ if (vb->progress_func && (vb->reps_seen++ % 50000 == 0))
vb->progress_func(vb->reps_seen, reps_count, NULL,
vb->progress_baton,
scratch_pool);