HDFS-16122. Fix DistCpContext#toString() (#3191). Contributed by tomscut.

Signed-off-by: Ayush Saxena <ayushsaxena@apache.org>
This commit is contained in:
litao 2021-07-10 16:25:11 +08:00 committed by GitHub
parent ba325a8ada
commit fef53aacc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -204,7 +204,7 @@ public String toString() {
return options.toString() + return options.toString() +
", sourcePaths=" + sourcePaths + ", sourcePaths=" + sourcePaths +
", targetPathExists=" + targetPathExists + ", targetPathExists=" + targetPathExists +
", preserveRawXattrs" + preserveRawXattrs; ", preserveRawXattrs=" + preserveRawXattrs;
} }
} }