You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by bc...@apache.org on 2015/05/06 20:55:30 UTC

trafficserver git commit: Changed the default sleep time for traffic_top to be 6 seconds instead 5 seconds. Sometimes the stats haven't been updated since they are updateded every 5 seconds.

Repository: trafficserver
Updated Branches:
  refs/heads/master 60ffbfda0 -> 304a7fee2


Changed the default sleep time for traffic_top to be 6 seconds instead
5 seconds.  Sometimes the stats haven't been updated since they are
updateded every 5 seconds.


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/304a7fee
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/304a7fee
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/304a7fee

Branch: refs/heads/master
Commit: 304a7fee2bcf7a0b2a95f36d960689e193c65454
Parents: 60ffbfd
Author: Bryan Call <bc...@apache.org>
Authored: Wed May 6 11:53:57 2015 -0700
Committer: Bryan Call <bc...@apache.org>
Committed: Wed May 6 11:53:57 2015 -0700

----------------------------------------------------------------------
 cmd/traffic_top/traffic_top.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/304a7fee/cmd/traffic_top/traffic_top.cc
----------------------------------------------------------------------
diff --git a/cmd/traffic_top/traffic_top.cc b/cmd/traffic_top/traffic_top.cc
index 2f34c5a..df447c2 100644
--- a/cmd/traffic_top/traffic_top.cc
+++ b/cmd/traffic_top/traffic_top.cc
@@ -384,7 +384,7 @@ main_stats_page(Stats &stats)
 int
 main(int argc, char **argv)
 {
-  int sleep_time = 5000;
+  int sleep_time = 6000;
   bool absolute = false;
   int opt;
   while ((opt = getopt(argc, argv, "s:")) != -1) {