Skip to content

Commit

Permalink
Fix compilation after forgetting to amend commit
Browse files Browse the repository at this point in the history
This commit was suppose to be included in the previous commit, but I
pushed before committing. Sorry for that.
  • Loading branch information
jasontedor committed Sep 10, 2018
1 parent c1cebd4 commit af95c9f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
import java.util.stream.Collectors;
import java.util.stream.Stream;

import static java.util.Collections.emptyMap;
import static org.hamcrest.Matchers.equalTo;

public class GatewayTests extends ESTestCase {
Expand Down Expand Up @@ -76,7 +77,7 @@ public String getValue(final String value) {
}

}));
final ClusterService clusterService = new ClusterService(Settings.EMPTY, clusterSettings, null);
final ClusterService clusterService = new ClusterService(Settings.EMPTY, clusterSettings, null, emptyMap());
final Gateway gateway = new Gateway(Settings.EMPTY, clusterService, null, null);
final MetaData.Builder builder = MetaData.builder();
final Settings settings = Settings.builder().put("foo.old", randomAlphaOfLength(8)).build();
Expand Down

0 comments on commit af95c9f

Please sign in to comment.