You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by vi...@apache.org on 2019/07/08 18:57:29 UTC

[mesos] branch master updated: Updated ReviewBot to tail 100 KB instead of 1 MB.

This is an automated email from the ASF dual-hosted git repository.

vinodkone pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git


The following commit(s) were added to refs/heads/master by this push:
     new 97fded5  Updated ReviewBot to tail 100 KB instead of 1 MB.
97fded5 is described below

commit 97fded51512ef3c5a4755a861a811e5329d9857a
Author: Vinod Kone <vi...@gmail.com>
AuthorDate: Mon Jul 8 13:55:22 2019 -0500

    Updated ReviewBot to tail 100 KB instead of 1 MB.
    
    1 MB worth of trailing data does not seem to be needed from
    experience. It just causes comment bloat.
---
 support/verify-reviews.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/support/verify-reviews.py b/support/verify-reviews.py
index c9c85f9..045a9ef 100755
--- a/support/verify-reviews.py
+++ b/support/verify-reviews.py
@@ -47,7 +47,7 @@ from datetime import datetime
 
 from common import REVIEWBOARD_URL
 
-REVIEW_SIZE = 1000000  # 1 MB in bytes.
+REVIEW_SIZE = 100000  # 100 KB in bytes.
 
 # Parse arguments.
 parser = argparse.ArgumentParser(