We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bb062f commit a13da89Copy full SHA for a13da89
hadoop-tools/hadoop-aws/src/main/java/org/apache/hadoop/fs/s3a/impl/UploadContentProviders.java
@@ -286,7 +286,9 @@ public final InputStream newStream() {
286
// the stream has been recreated for the first time.
287
// notify only once for this stream, so as not to flood
288
// the logs.
289
- LOG.info("Stream recreated: {}", this);
+ // originally logged at info; logs at debug because HADOOP-19516
290
+ // means that this message is very common with S3 Express stores.
291
+ LOG.debug("Stream recreated: {}", this);
292
}
293
return setCurrentStream(createNewStream());
294
0 commit comments