Skip to content

Commit

Permalink
Fix build error.
Browse files Browse the repository at this point in the history
  • Loading branch information
veblush committed Jul 3, 2016
1 parent 59f0db6 commit bc47a05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/Akka.Cluster.Utility/ClusterActorDiscoveryMessage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class RegisterCluster
public UniqueAddress ClusterAddress { get; }
public List<ClusterActorUp> ActorUpList { get; }

public RegisterCluster(UniqueAddress clusterAddress, List<ClusterActorUp> actorUpList)
public RegisterCluster(UniqueAddress clusterAddress, List<ClusterActorUp> actorUpList = null)
{
ClusterAddress = clusterAddress;
ActorUpList = actorUpList;
Expand Down

0 comments on commit bc47a05

Please sign in to comment.