Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Mpdreamz committed Sep 9, 2024
1 parent 0382786 commit 1298275
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Elastic.Apm/Report/PayloadSenderV2.cs
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,8 @@ internal async Task<bool> EnqueueEventInternal(object eventObj, string dbgEventK

internal void EnqueueEvent(object eventObj, string dbgEventKind)
{
if (!_isEnabled) return;
if (!_isEnabled)
return;
Task.Run(async () => await EnqueueEventInternal(eventObj, dbgEventKind));
}

Expand Down

0 comments on commit 1298275

Please sign in to comment.