summaryrefslogtreecommitdiff
path: root/cmds/incident
diff options
context:
space:
mode:
authorJoe Onorato <joeo@google.com>2019-04-24 16:27:33 -0700
committerJoe Onorato <joeo@google.com>2019-04-26 17:44:10 -0700
commite547205eec1c32a7b270e4811ba161222bdb6bf7 (patch)
treeeb9c3e05cd999735ca91fc0bd8ef13b7b8752ed8 /cmds/incident
parent7a406b47ebd2ec9dc37e203863df8806e55dfc00 (diff)
Get incidentd cts working again.
- The buffer size increased, and the CTS test that checked that was triggering. - Privacy filtering wasn't working for the stack trace sections - The incident command was not handling the default arguments correctly - The throttler was throttling streaming reports, which made the test flaky. Bug: 126253679 Test: atest CtsIncidentHostTestCases Change-Id: I342cd7d0421ea8c22b7796fc99e779f21855af73
Diffstat (limited to 'cmds/incident')
-rw-r--r--cmds/incident/main.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/cmds/incident/main.cpp b/cmds/incident/main.cpp
index 93e592c9c01b..eca781fd4e4f 100644
--- a/cmds/incident/main.cpp
+++ b/cmds/incident/main.cpp
@@ -263,6 +263,9 @@ main(int argc, char** argv)
return 1;
}
}
+ if (destination == DEST_UNSET) {
+ destination = DEST_STDOUT;
+ }
string pkg;
string cls;