mirror of https://github.com/apache/nifi.git
Merge branch 'develop' of https://git-wip-us.apache.org/repos/asf/incubator-nifi into develop
This commit is contained in:
commit
4f015f5f43
|
@ -297,7 +297,9 @@ public final class StandardProcessScheduler implements ProcessScheduler {
|
||||||
final Class<? extends ControllerService> serviceDefinition = descriptor.getControllerServiceDefinition();
|
final Class<? extends ControllerService> serviceDefinition = descriptor.getControllerServiceDefinition();
|
||||||
if ( serviceDefinition != null ) {
|
if ( serviceDefinition != null ) {
|
||||||
final String serviceId = processContext.getProperty(descriptor).getValue();
|
final String serviceId = processContext.getProperty(descriptor).getValue();
|
||||||
serviceIds.add(serviceId);
|
if ( serviceId != null ) {
|
||||||
|
serviceIds.add(serviceId);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue