We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5208e0f commit 2b10e24Copy full SHA for 2b10e24
1 file changed
modules/platforms/dotnet/Apache.Ignite.Core.Tests/Unmanaged/JniThreadDetachTest.cs
@@ -50,7 +50,7 @@ private string[] GetJavaThreadNames()
50
{
51
return Ignite.GetCompute()
52
.ExecuteJavaTask<string[]>("org.apache.ignite.platform.PlatformThreadNamesTask", null)
53
- .Where(x => !x.StartsWith("pub-#") && !x.StartsWith("jvm-"))
+ .Where(x => !x.StartsWith("pub-#") && !x.StartsWith("jvm-") && !x.StartsWith("mgmt-"))
54
.OrderBy(x => x)
55
.ToArray();
56
}
0 commit comments