Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ public void testTelemetryHappyPath(String log) throws Exception {
// When
uploader = new CrashUploader(config, crashConfig);
server.enqueue(new MockResponse().setResponseCode(200));
uploader.upload(getResourcePath(inputLog));
uploader.remoteUpload(readFileAsString(inputLog), true, false);

final RecordedRequest recordedRequest = server.takeRequest(5, TimeUnit.SECONDS);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public final class CrashTrackingConfig {

public static final String CRASH_TRACKING_ERRORS_INTAKE_ENABLED =
"crashtracking.errors-intake.enabled";
public static final boolean CRASH_TRACKING_ERRORS_INTAKE_ENABLED_DEFAULT = false;
public static final boolean CRASH_TRACKING_ERRORS_INTAKE_ENABLED_DEFAULT = true;

public static final String CRASH_TRACKING_EXTENDED_INFO_ENABLED =
"crashtracking.extended-info.enabled";
Expand Down
Loading