You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The purpose of these changes is to format code to apply project conventions
for consistency and in some cases, update member names and documentation to
better convey context.
**Note:** These changes are intended to be superficial; no change to existing
behavior should have taken place.
Copy file name to clipboardExpand all lines: sdk/eventhub/Azure.Messaging.EventHubs.Processor/src/Diagnostics/BlobEventStoreEventSource.cs
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -341,10 +341,10 @@ public virtual void UpdateCheckpointStart(string partitionId,
341
341
/// <param name="consumerGroup">The name of the consumer group the checkpoint is associated with.</param>
342
342
///
343
343
[Event(33,Level=EventLevel.Informational,Message="Completed the attempt to create/update a checkpoint for partition: `{0}` of FullyQualifiedNamespace: '{1}'; EventHubName: '{2}'; ConsumerGroup: '{3}'.")]
@@ -363,11 +363,11 @@ public virtual void UpdateCheckpointComplete(string partitionId,
363
363
/// <param name="errorMessage">The message for the exception that occurred.</param>
364
364
///
365
365
[Event(34,Level=EventLevel.Error,Message="An exception occurred when creating/updating a checkpoint for partition: `{0}` of FullyQualifiedNamespace: '{1}'; EventHubName: '{2}'; ConsumerGroup: '{3}'. ErrorMessage: '{4}'.")]
Assert.That(processedEvents.TryGetValue(sourceId,outvarprocessedEvent),Is.True,$"The event with custom identifier [{sourceId }] was not processed.");
82
+
Assert.That(processedEvents.TryGetValue(sourceId,outvarprocessedEvent),Is.True,$"The event with custom identifier [{sourceId }] was not processed.");
83
83
Assert.That(sourceEvent.IsEquivalentTo(processedEvent),$"The event with custom identifier [{sourceId }] did not match the corresponding processed event.");
84
84
}
85
85
}
@@ -97,7 +97,7 @@ public async Task EventsCanBeReadByOneProcessorClientUsingAnIdentityCredential()
Assert.That(processedEvents.TryGetValue(sourceId,outvarprocessedEvent),Is.True,$"The event with custom identifier [{sourceId }] was not processed.");
132
+
Assert.That(processedEvents.TryGetValue(sourceId,outvarprocessedEvent),Is.True,$"The event with custom identifier [{sourceId }] was not processed.");
133
133
Assert.That(sourceEvent.IsEquivalentTo(processedEvent),$"The event with custom identifier [{sourceId }] did not match the corresponding processed event.");
134
134
}
135
135
}
@@ -148,7 +148,7 @@ public async Task EventsCanBeReadByOneProcessorClientUsingTheSharedKeyCredential
Assert.That(processedEvents.TryGetValue(sourceId,outvarprocessedEvent),Is.True,$"The event with custom identifier [{sourceId }] was not processed.");
183
+
Assert.That(processedEvents.TryGetValue(sourceId,outvarprocessedEvent),Is.True,$"The event with custom identifier [{sourceId }] was not processed.");
184
184
Assert.That(sourceEvent.IsEquivalentTo(processedEvent),$"The event with custom identifier [{sourceId }] did not match the corresponding processed event.");
185
185
}
186
186
}
@@ -244,7 +244,7 @@ public async Task EventsCanBeReadByMultipleProcessorClients()
Assert.That(processedEvents.TryGetValue(sourceId,outvarprocessedEvent),Is.True,$"The event with custom identifier [{sourceId }] was not processed.");
247
+
Assert.That(processedEvents.TryGetValue(sourceId,outvarprocessedEvent),Is.True,$"The event with custom identifier [{sourceId }] was not processed.");
248
248
Assert.That(sourceEvent.IsEquivalentTo(processedEvent),$"The event with custom identifier [{sourceId }] did not match the corresponding processed event.");
249
249
}
250
250
}
@@ -288,7 +288,7 @@ public async Task ProcessorClientCreatesOwnership()
Assert.That(processedEvents.TryGetValue(sourceId,outvarprocessedEvent),Is.True,$"The event with custom identifier [{sourceId }] was not processed.");
396
+
Assert.That(processedEvents.TryGetValue(sourceId,outvarprocessedEvent),Is.True,$"The event with custom identifier [{sourceId }] was not processed.");
397
397
Assert.That(sourceEvent.IsEquivalentTo(processedEvent),$"The event with custom identifier [{sourceId }] did not match the corresponding processed event.");
398
398
}
399
399
}
@@ -438,7 +438,7 @@ public async Task ProcessorClientBeginsWithTheNextEventAfterCheckpointing()
Assert.That(processedEvents.TryGetValue(sourceId,outvarprocessedEvent),Is.True,$"The event with custom identifier [{sourceId }] was not processed.");
479
+
Assert.That(processedEvents.TryGetValue(sourceId,outvarprocessedEvent),Is.True,$"The event with custom identifier [{sourceId }] was not processed.");
480
480
Assert.That(sourceEvent.IsEquivalentTo(processedEvent),$"The event with custom identifier [{sourceId }] did not match the corresponding processed event.");
0 commit comments