Skip to content

Commit b37d3d1

Browse files
authored
Fix spelling of 'occurred' in cluster logs (#2170)
1 parent d17f81f commit b37d3d1

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/Proto.Cluster/Identity/IdentityStorageWorker.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ async Task<PidResult> Inner()
319319
if (!_cluster.System.Shutdown.IsCancellationRequested && _shouldThrottle().IsOpen() &&
320320
_memberList.ContainsMemberId(activator.Id))
321321
{
322-
_logger.LogError(e, "[SpawnActivationAsync] Error occured requesting remote PID {@Request}", req);
322+
_logger.LogError(e, "[SpawnActivationAsync] Error occurred requesting remote PID {@Request}", req);
323323
}
324324
}
325325

src/Proto.Cluster/Partition/PartitionIdentityLookup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ public PartitionIdentityLookup(PartitionConfig? config)
166166
e.CheckFailFast();
167167

168168
Logger.LogError(e,
169-
"[PartitionIdentity] Error occured requesting remote PID {@Request}, identity Owner {Owner}", req,
169+
"[PartitionIdentity] Error occurred requesting remote PID {@Request}, identity Owner {Owner}", req,
170170
identityOwner);
171171

172172
return null;

src/Proto.Cluster/PartitionActivator/PartitionActivatorLookup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public PartitionActivatorLookup(TimeSpan getPidTimeout)
9393
e.CheckFailFast();
9494

9595
Logger.LogError(e,
96-
"[PartitionActivator] Error occured requesting remote PID {@Request}, identity Owner {Owner}", req,
96+
"[PartitionActivator] Error occurred requesting remote PID {@Request}, identity Owner {Owner}", req,
9797
owner);
9898

9999
return null;

src/Proto.Cluster/SingleNode/SingleNodeLookup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public SingleNodeLookup(TimeSpan getPidTimeout)
6969
catch (Exception e) when (e is not IdentityIsBlockedException)
7070
{
7171
e.CheckFailFast();
72-
Logger.LogError(e, "[SingleNode] Error occured requesting remote PID {@Request}", req);
72+
Logger.LogError(e, "[SingleNode] Error occurred requesting remote PID {@Request}", req);
7373

7474
return null;
7575
}

0 commit comments

Comments
 (0)