summaryrefslogtreecommitdiffstats
path: root/cmds
diff options
context:
space:
mode:
authorSharvil Nanavati <sharvil@google.com>2015-11-27 21:04:11 -0800
committerSharvil Nanavati <sharvil@google.com>2015-11-27 21:04:11 -0800
commit804339a59e4abcbcf5a50a60ff0543e6b404e572 (patch)
treef7c2461a67757d4865e60541ed911ffc4d48f5fe /cmds
parent8abb053a2ea021c649e481813e45860add946e36 (diff)
downloadframeworks_native-804339a59e4abcbcf5a50a60ff0543e6b404e572.zip
frameworks_native-804339a59e4abcbcf5a50a60ff0543e6b404e572.tar.gz
frameworks_native-804339a59e4abcbcf5a50a60ff0543e6b404e572.tar.bz2
Increase raft timeout to 10min so we get complete logs from older devices.
Devices like dory get slammed when bugreports are taken and can't compress all the raft logs in the current 5min timeout. Our dogfooders spend their precious time getting us bugreports and then we can't act on them because we have broken raft logs. :( This change bumps up the timeout in the hopes that we can get complete logs from even our slowest devices. Change-Id: I10741a6185b39544f4c0531f0ee74864d74a1aa4
Diffstat (limited to 'cmds')
-rw-r--r--cmds/dumpstate/dumpstate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/dumpstate/dumpstate.c b/cmds/dumpstate/dumpstate.c
index 713634c..b88b605 100644
--- a/cmds/dumpstate/dumpstate.c
+++ b/cmds/dumpstate/dumpstate.c
@@ -351,7 +351,7 @@ static void dumpstate() {
run_command("LOG STATISTICS", 10, "logcat", "-b", "all", "-S", NULL);
- run_command("RAFT LOGS", 300, SU_PATH, "root", "logcompressor", "-r", RAFT_DIR, NULL);
+ run_command("RAFT LOGS", 600, SU_PATH, "root", "logcompressor", "-r", RAFT_DIR, NULL);
/* show the traces we collected in main(), if that was done */
if (dump_traces_path != NULL) {