mirror of https://github.com/apache/nifi.git
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:
parent
a5261914fb
commit
b2e468ecf8
|
@ -127,7 +127,7 @@ public class StandardReportingInitializationContext implements ReportingInitiali
|
|||
|
||||
@Override
|
||||
public File getKerberosServiceKeytab() {
|
||||
return new File(nifiProperties.getKerberosKeytabLocation());
|
||||
return new File(nifiProperties.getKerberosServiceKeytabLocation());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -102,7 +102,7 @@ public class StandardControllerServiceInitializationContext implements Controlle
|
|||
|
||||
@Override
|
||||
public File getKerberosServiceKeytab() {
|
||||
return new File(nifiProperties.getKerberosKeytabLocation());
|
||||
return new File(nifiProperties.getKerberosServiceKeytabLocation());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -69,7 +69,7 @@ public class StandardProcessorInitializationContext implements ProcessorInitiali
|
|||
|
||||
@Override
|
||||
public File getKerberosServiceKeytab() {
|
||||
return new File(nifiProperties.getKerberosKeytabLocation());
|
||||
return new File(nifiProperties.getKerberosServiceKeytabLocation());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue