Skip to content

Commit

Permalink
Build
Browse files Browse the repository at this point in the history
  • Loading branch information
cybertyche committed Jul 7, 2023
1 parent 34fa23e commit 72c3b22
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Orleans.Core/Diagnostics/MessagingTrace.cs
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ public void OnRejectSendMessageToDeadSilo(SiloAddress localSilo, Message message
null);
}

internal static void OnSendRequest(Message message)
internal void OnSendRequest(Message message)
{
OrleansInsideRuntimeClientEvent.Log.SendRequest(message);
}
Expand Down
2 changes: 1 addition & 1 deletion src/Orleans.Runtime/Hosting/SiloHostedService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public SiloHostedService(
IEnumerable<IConfigurationValidator> configurationValidators,
ILogger<SiloHostedService> logger)
{
this.ValidateSystemConfiguration(configurationValidators);
ValidateSystemConfiguration(configurationValidators);
this.silo = silo;
this.logger = logger;
}
Expand Down

0 comments on commit 72c3b22

Please sign in to comment.