aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKonstantin Ryabitsev <konstantin@linuxfoundation.org>2019-10-29 12:21:35 -0400
committerKonstantin Ryabitsev <konstantin@linuxfoundation.org>2019-10-29 12:21:35 -0400
commit76647ff7537d8dd1be17981dbde49216c407a4c0 (patch)
tree13da3ab7706d59757e846c2d3fc68ea22706a54f
parent81728ee164ee911a01d3dc24da781a0561eca3aa (diff)
downloadgrokmirror-stable-1.2.y.tar.gz
Force --no-progress on fsck runsstable-1.2.y
Looks like verify_commit_graph is outputting progress info even when not running in a terminal, so force --no-progress to quiet it down (and report a bug). Signed-off-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
-rwxr-xr-xgrokmirror/fsck.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/grokmirror/fsck.py b/grokmirror/fsck.py
index 73ccd78..769a135 100755
--- a/grokmirror/fsck.py
+++ b/grokmirror/fsck.py
@@ -262,7 +262,7 @@ def run_git_repack(fullpath, config, level=1):
def run_git_fsck(fullpath, config, conn_only=False):
- args = ['fsck', '--no-dangling', '--no-reflogs']
+ args = ['fsck', '--no-progress', '--no-dangling', '--no-reflogs']
if conn_only:
args.append('--connectivity-only')
logger.info(' fsck : running with --connectivity-only')