Skip to content

Commit 65a47bf

Browse files
Fix event source WriteEventOverload to make it being used (#28119)
1 parent 4d52f47 commit 65a47bf

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

sdk/eventhub/Azure.Messaging.EventHubs.Processor/src/Diagnostics/BlobEventStoreEventSource.cs

+5-5
Original file line numberDiff line numberDiff line change
@@ -406,11 +406,11 @@ public virtual void GetCheckpointError(string fullyQualifiedNamespace,
406406
///
407407
[NonEvent]
408408
[MethodImpl(MethodImplOptions.AggressiveInlining)]
409-
private unsafe void WriteEvent<TValue1, TValue2>(int eventId,
410-
string arg1,
411-
string arg2,
412-
string arg3,
413-
TValue2 arg4)
409+
private unsafe void WriteEvent<TValue1>(int eventId,
410+
string arg1,
411+
string arg2,
412+
string arg3,
413+
TValue1 arg4)
414414
where TValue1 : struct
415415
{
416416
fixed (char* arg1Ptr = arg1)

0 commit comments

Comments
 (0)