fix compilation
This commit is contained in:
parent
fd79e40e65
commit
85a1b54867
|
@ -22,6 +22,7 @@ package org.elasticsearch.discovery.azure;
|
|||
import org.elasticsearch.cluster.ClusterName;
|
||||
import org.elasticsearch.cluster.ClusterService;
|
||||
import org.elasticsearch.common.inject.Inject;
|
||||
import org.elasticsearch.common.settings.ClusterSettings;
|
||||
import org.elasticsearch.common.settings.Settings;
|
||||
import org.elasticsearch.discovery.DiscoverySettings;
|
||||
import org.elasticsearch.discovery.zen.ZenDiscovery;
|
||||
|
@ -39,9 +40,9 @@ public class AzureDiscovery extends ZenDiscovery {
|
|||
|
||||
@Inject
|
||||
public AzureDiscovery(Settings settings, ClusterName clusterName, ThreadPool threadPool, TransportService transportService,
|
||||
ClusterService clusterService, ClusterSettingsService clusterSettingsService, ZenPingService pingService,
|
||||
ClusterService clusterService, ClusterSettings clusterSettings, ZenPingService pingService,
|
||||
DiscoverySettings discoverySettings, ElectMasterService electMasterService) {
|
||||
super(settings, clusterName, threadPool, transportService, clusterService, clusterSettingsService,
|
||||
super(settings, clusterName, threadPool, transportService, clusterService, clusterSettings,
|
||||
pingService, electMasterService, discoverySettings);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue