File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
articles/azure-monitor/app Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -169,12 +169,13 @@ namespace ConsoleApp
169
169
// before exit, flush the remaining data
170
170
telemetryClient .Flush ();
171
171
172
- // Console apps should use the WorkerService package, which uses ServerTelemetryChannel and does not have synchronous flushing.
172
+ // Console apps should use the WorkerService package.
173
+ // This uses ServerTelemetryChannel which does not have synchronous flushing.
173
174
// For this reason we add a short 5s delay in this sample.
174
175
175
176
Task .Delay (5000 ).Wait ();
176
177
177
- // If you are using InMemoryChannel, Flush() is synchronous and the short delay is not required.
178
+ // If you're using InMemoryChannel, Flush() is synchronous and the short delay is not required.
178
179
179
180
}
180
181
You can’t perform that action at this time.
0 commit comments