diff options
| author | 2015-10-02 10:02:24 -0700 | |
|---|---|---|
| committer | 2015-10-02 10:02:24 -0700 | |
| commit | 05c862252d5021f55a69281473c67d76e7097422 (patch) | |
| tree | b07cb5c74bd086638d56e3c987426f8bc765354c | |
| parent | 6c51a07d30a3c4bed9675da88c5f6f24a741d9a2 (diff) | |
do not dumpstate raft
BUG: 24159112
Change-Id: I344aa73808992b5f84cb0536201a3ab2eb6f2b3c
| -rw-r--r-- | cmds/dumpstate/dumpstate.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmds/dumpstate/dumpstate.c b/cmds/dumpstate/dumpstate.c index 713634c4db..59c1d12f7d 100644 --- a/cmds/dumpstate/dumpstate.c +++ b/cmds/dumpstate/dumpstate.c @@ -351,7 +351,8 @@ 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); + // raft disabled as per http://b/24159112 + // run_command("RAFT LOGS", 300, SU_PATH, "root", "logcompressor", "-r", RAFT_DIR, NULL); /* show the traces we collected in main(), if that was done */ if (dump_traces_path != NULL) { |