This is an automated email from the ASF dual-hosted git repository.

shishkovilja pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new 2b10e241242 IGNITE-28375 Fix flaky JniThreadDetachTest (#12944)
2b10e241242 is described below

commit 2b10e241242576dcdc1de0762542c20f88fd19c5
Author: Maksim Davydov <[email protected]>
AuthorDate: Wed Apr 8 16:47:02 2026 +0300

    IGNITE-28375 Fix flaky JniThreadDetachTest (#12944)
---
 .../dotnet/Apache.Ignite.Core.Tests/Unmanaged/JniThreadDetachTest.cs    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Unmanaged/JniThreadDetachTest.cs
 
b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Unmanaged/JniThreadDetachTest.cs
index 66b4795b121..72d1079b94f 100644
--- 
a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Unmanaged/JniThreadDetachTest.cs
+++ 
b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Unmanaged/JniThreadDetachTest.cs
@@ -50,7 +50,7 @@ namespace Apache.Ignite.Core.Tests.Unmanaged
         {
             return Ignite.GetCompute()
                 
.ExecuteJavaTask<string[]>("org.apache.ignite.platform.PlatformThreadNamesTask",
 null)
-                .Where(x => !x.StartsWith("pub-#") && !x.StartsWith("jvm-"))
+                .Where(x => !x.StartsWith("pub-#") && !x.StartsWith("jvm-") && 
!x.StartsWith("mgmt-"))
                 .OrderBy(x => x)
                 .ToArray();
         }

Reply via email to