Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -758,10 +758,10 @@ private static final class DfsBuilderUtility {
Method noLocalWriteMethod = null;
if (builderClass != null) {
try {
replicateMethod = builderClass.getMethod("noLocalWrite");
noLocalWriteMethod = builderClass.getMethod("noLocalWrite");
LOG.debug("Using builder API via reflection for DFS file creation.");
} catch (NoSuchMethodException e) {
LOG.debug("Could not find noLocalWrite method on builder; will not set replicate when"
LOG.debug("Could not find noLocalWrite method on builder; will not set noLocalWrite when"
+ " creating output stream", e);
}
}
Expand Down