Github user panelladavide commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2336#discussion_r156658395
--- Diff:
nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-hadoop-record-utils/src/main/java/org/apache/nifi/processors/hadoop/AbstractPutHDFSRecord.java
---
@@ -444,11 +446,17 @@ protected void deleteQuietly(final FileSystem
fileSystem, final Path file) {
* @param remoteOwner the new owner for the file
* @param remoteGroup the new group for the file
*/
- protected void changeOwner(final FileSystem fileSystem, final Path
path, final String remoteOwner, final String remoteGroup) {
+ protected void changeOwner(final ProcessContext context, final
FileSystem fileSystem, final Path path, final String remoteOwner, final String
remoteGroup,final FlowFile flowFile) {
--- End diff --
Ok, thanks.
---