summaryrefslogtreecommitdiff
path: root/csharp/src
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2020-05-06 21:41:31 +0200
committerJose <jose@zeroc.com>2020-05-06 21:52:31 +0200
commitc55afc69c97f766f8d54b717b6793001e347aadd (patch)
treef633bb3fbfdd3d3b7363cd23bf0250645950ac2b /csharp/src
parentRevert Gradle update for java-compat (diff)
downloadice-c55afc69c97f766f8d54b717b6793001e347aadd.tar.bz2
ice-c55afc69c97f766f8d54b717b6793001e347aadd.tar.xz
ice-c55afc69c97f766f8d54b717b6793001e347aadd.zip
Randomize the adapterId of proxies return by findObject
Diffstat (limited to 'csharp/src')
-rw-r--r--csharp/src/IceDiscovery/LocatorI.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/csharp/src/IceDiscovery/LocatorI.cs b/csharp/src/IceDiscovery/LocatorI.cs
index ecbe1ed72bd..b4c2922228c 100644
--- a/csharp/src/IceDiscovery/LocatorI.cs
+++ b/csharp/src/IceDiscovery/LocatorI.cs
@@ -114,7 +114,7 @@ namespace IceDiscovery
{
return null;
}
- //adapterIds.Suffle();
+ IceUtilInternal.Collections.Shuffle(ref adapterIds);
return prx.ice_adapterId(adapterIds[0]);
}
}