You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Java's Files.walk() ends up in an infinite loop when iterating
over files on GCS because the iterator returns the directory
itself as the first result, so Files.walk() tries to cd there
and we're stuck.
The fix is to check for that path and not return it.
Copy file name to clipboardExpand all lines: google-cloud-contrib/google-cloud-nio/src/main/java/com/google/cloud/storage/contrib/nio/CloudStorageFileSystemProvider.java
0 commit comments