Skip to content

Commit 2b10e24

Browse files
authored
IGNITE-28375 Fix flaky JniThreadDetachTest (#12944)
1 parent 5208e0f commit 2b10e24

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

modules/platforms/dotnet/Apache.Ignite.Core.Tests/Unmanaged/JniThreadDetachTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ private string[] GetJavaThreadNames()
5050
{
5151
return Ignite.GetCompute()
5252
.ExecuteJavaTask<string[]>("org.apache.ignite.platform.PlatformThreadNamesTask", null)
53-
.Where(x => !x.StartsWith("pub-#") && !x.StartsWith("jvm-"))
53+
.Where(x => !x.StartsWith("pub-#") && !x.StartsWith("jvm-") && !x.StartsWith("mgmt-"))
5454
.OrderBy(x => x)
5555
.ToArray();
5656
}

0 commit comments

Comments
 (0)