NIFI-489:

- Using the underlying instance in the base class instead of the proxy.
This commit is contained in:
Matt Gilman 2015-04-07 10:15:54 -04:00
parent 4f015f5f43
commit 7369730cea
1 changed files with 1 additions and 1 deletions

View File

@ -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;