We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35b3b5e commit 7ec2606Copy full SHA for 7ec2606
src/Microsoft.Azure.ServiceBus/Core/MessageSender.cs
@@ -281,6 +281,8 @@ public async Task SendAsync(Batch batch)
281
MessagingEventSource.Log.MessageSendStart(this.ClientId, batch.Length);
282
283
var isDiagnosticSourceEnabled = ServiceBusDiagnosticSource.IsEnabled();
284
+ // TODO: diagnostics (Start/Stop) is currently not possible. Requires change in how Diagnostics works.
285
+ // See https://github.com/SeanFeldman/azure-service-bus-dotnet/pull/1#issuecomment-415515524 for details.
286
// var activity = isDiagnosticSourceEnabled ? this.diagnosticSource.SendStart(messageList) : null;
287
Task sendTask;
288
0 commit comments