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

raulcd pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/main by this push:
     new 2f039f1e0d GH-36863: [C#] Remove unnecessary applied fix to not 
shutdown PythonEngine on CDataInterfacePythonTests if .NET is > 5.0 (#36872)
2f039f1e0d is described below

commit 2f039f1e0d53b793c634078379ac031c6c55d53d
Author: Raúl Cumplido <[email protected]>
AuthorDate: Wed Jul 26 10:05:58 2023 +0200

    GH-36863: [C#] Remove unnecessary applied fix to not shutdown PythonEngine 
on CDataInterfacePythonTests if .NET is > 5.0 (#36872)
    
    ### Rationale for this change
    
    Maintenance branch fix is not necessary.
    
    ### What changes are included in this PR?
    
    Remove unnecessary patch
    
    ### Are these changes tested?
    
    Yes, on CI
    
    ### Are there any user-facing changes?
    
    No
    * Closes: #36863
    
    Authored-by: Raúl Cumplido <[email protected]>
    Signed-off-by: Raúl Cumplido <[email protected]>
---
 csharp/test/Apache.Arrow.Tests/CDataInterfacePythonTests.cs | 2 --
 1 file changed, 2 deletions(-)

diff --git a/csharp/test/Apache.Arrow.Tests/CDataInterfacePythonTests.cs 
b/csharp/test/Apache.Arrow.Tests/CDataInterfacePythonTests.cs
index 86d7ff52cd..4c53b98e3d 100644
--- a/csharp/test/Apache.Arrow.Tests/CDataInterfacePythonTests.cs
+++ b/csharp/test/Apache.Arrow.Tests/CDataInterfacePythonTests.cs
@@ -60,9 +60,7 @@ namespace Apache.Arrow.Tests
 
             public void Dispose()
             {
-#if !NET5_0_OR_GREATER
                 PythonEngine.Shutdown();
-#endif
             }
         }
 

Reply via email to