raulcd commented on code in PR #37624:
URL: https://github.com/apache/arrow/pull/37624#discussion_r1332699867


##########
python/pyarrow/tests/test_fs.py:
##########
@@ -255,7 +255,10 @@ def s3fs(request, s3_server):
         allow_move_dir=False,
         allow_append_to_file=False,
     )
-    fs.delete_dir(bucket)
+    try:
+        fs.delete_dir(bucket)
+    except OSError:
+        pass

Review Comment:
   I would like @jorisvandenbossche feedback on this one as I am not sure 
whether this fix is acceptable as it might hide other issues that could 
potentially happen.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to