Skip to content

Commit

Permalink
SendRuntimeQualityTelemetry defaults to true (#3355)
Browse files Browse the repository at this point in the history
  • Loading branch information
lfitchett authored Aug 11, 2020
1 parent 08348af commit f379462
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ public static async Task<int> MainAsync(IConfiguration configuration)
metricsConfig = new MetricsConfig(configuration);
builder.RegisterModule(new MetricsModule(metricsConfig, iothubHostname, deviceId));

bool diagnosticsEnabled = configuration.GetValue("SendProductQualityTelemetry", false);
bool diagnosticsEnabled = configuration.GetValue("SendRuntimeQualityTelemetry", true);
diagnosticConfig = new DiagnosticConfig(diagnosticsEnabled, storagePath, configuration);
builder.RegisterModule(new DiagnosticsModule(diagnosticConfig));

Expand Down

0 comments on commit f379462

Please sign in to comment.