fix compilation

This commit is contained in:
Simon Willnauer 2015-12-09 11:41:14 +01:00
parent fd79e40e65
commit 85a1b54867
1 changed files with 3 additions and 2 deletions

View File

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