Skip to content

Commit

Permalink
Correcting exception message (#9262)
Browse files Browse the repository at this point in the history
  • Loading branch information
rkargMsft authored Dec 5, 2024
1 parent 8828452 commit 4777dae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Orleans.Runtime/Placement/PlacementService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public SiloAddress[] GetCompatibleSilos(PlacementTarget target)
throw new OrleansException(
$"No active nodes are compatible with grain {grainType} and interface {target.InterfaceType} version {target.InterfaceVersion}. "
+ $"Known nodes with grain type: {allWithTypeString}. "
+ $"All known nodes compatible with interface version: {allWithTypeString}");
+ $"All known nodes compatible with interface version: {allWithInterfaceString}");
}

return compatibleSilos;
Expand Down

0 comments on commit 4777dae

Please sign in to comment.