mirror of https://github.com/apache/nifi.git
NIFI-489:
- Using the underlying instance in the base class instead of the proxy.
This commit is contained in:
parent
4f015f5f43
commit
7369730cea
|
@ -53,7 +53,7 @@ public class StandardControllerServiceNode extends AbstractConfiguredComponent i
|
|||
|
||||
public StandardControllerServiceNode(final ControllerService proxiedControllerService, final ControllerService implementation, final String id,
|
||||
final ValidationContextFactory validationContextFactory, final ControllerServiceProvider serviceProvider) {
|
||||
super(proxiedControllerService, id, validationContextFactory, serviceProvider);
|
||||
super(implementation, id, validationContextFactory, serviceProvider);
|
||||
this.proxedControllerService = proxiedControllerService;
|
||||
this.implementation = implementation;
|
||||
this.serviceProvider = serviceProvider;
|
||||
|
|
Loading…
Reference in New Issue