We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
java-sdk/src/main/java/com/qiniu/storage/BucketManager.java
Line 1271 in 28bf849
@Override public FileInfo[] next() { try { FileListing f = listFiles(bucket, prefix, marker, limit, delimiter); this.marker = f.marker == null ? "" : f.marker; return f.items; } catch (QiniuException e) { this.exception = e; return null; } }
here should fail fast so that user can know what happened
The text was updated successfully, but these errors were encountered:
PR: https://github.com/qiniu/java-sdk/pull/525/files
Sorry, something went wrong.
No branches or pull requests
java-sdk/src/main/java/com/qiniu/storage/BucketManager.java
Line 1271 in 28bf849
here should fail fast so that user can know what happened
The text was updated successfully, but these errors were encountered: