Skip to content

Commit

Permalink
fix missing variable;
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Maute <stefan.maute@bosch.io>
  • Loading branch information
Stefan Maute committed Oct 20, 2021
1 parent 0986e91 commit 21b790e
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ public abstract class BaseClientActor extends AbstractFSMWithStash<BaseClientSta
private ActorRef outboundMappingProcessorActor;
private ActorRef subscriptionManager;
private ActorRef tunnelActor;
private ActorRef proxyActor;

protected BaseClientActor(final Connection connection,
final ActorRef proxyActor,
Expand All @@ -219,6 +220,7 @@ protected BaseClientActor(final Connection connection,
materializer = Materializer.createMaterializer(system);
this.connection = checkNotNull(connection, "connection");
this.connectionActor = connectionActor;
this.proxyActor = proxyActor;

// this is retrieve via the extension for each baseClientActor in order to not pass it as constructor arg
// as all constructor arguments need to be serializable as the BaseClientActor is started behind a cluster
Expand Down

0 comments on commit 21b790e

Please sign in to comment.