NIFI-2574 updated to reflect new accessor methods for nifi properties with kerberos service

This closes #872.

Signed-off-by: Andy LoPresto <alopresto@apache.org>
This commit is contained in:
joewitt 2016-08-17 09:23:10 -07:00 committed by Andy LoPresto
parent a5261914fb
commit b2e468ecf8
No known key found for this signature in database
GPG Key ID: 3C6EF65B2F7DEF69
3 changed files with 3 additions and 3 deletions

View File

@ -127,7 +127,7 @@ public class StandardReportingInitializationContext implements ReportingInitiali
@Override
public File getKerberosServiceKeytab() {
return new File(nifiProperties.getKerberosKeytabLocation());
return new File(nifiProperties.getKerberosServiceKeytabLocation());
}
@Override

View File

@ -102,7 +102,7 @@ public class StandardControllerServiceInitializationContext implements Controlle
@Override
public File getKerberosServiceKeytab() {
return new File(nifiProperties.getKerberosKeytabLocation());
return new File(nifiProperties.getKerberosServiceKeytabLocation());
}
@Override

View File

@ -69,7 +69,7 @@ public class StandardProcessorInitializationContext implements ProcessorInitiali
@Override
public File getKerberosServiceKeytab() {
return new File(nifiProperties.getKerberosKeytabLocation());
return new File(nifiProperties.getKerberosServiceKeytabLocation());
}
@Override