From 4777daeefb5783ea4a66172487fc031733d1c9b2 Mon Sep 17 00:00:00 2001 From: rkargMsft <164392675+rkargMsft@users.noreply.github.com> Date: Wed, 4 Dec 2024 17:32:50 -0800 Subject: [PATCH] Correcting exception message (#9262) --- src/Orleans.Runtime/Placement/PlacementService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Orleans.Runtime/Placement/PlacementService.cs b/src/Orleans.Runtime/Placement/PlacementService.cs index 9c8dee8154..cd17709a05 100644 --- a/src/Orleans.Runtime/Placement/PlacementService.cs +++ b/src/Orleans.Runtime/Placement/PlacementService.cs @@ -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;