summaryrefslogtreecommitdiffstats
path: root/clustercontroller-apps/src/main/java/com/yahoo/vespa/clustercontroller/apps/clustercontroller/StandaloneZooKeeperProvider.java
blob: 1cc8155657f6233d194182c5737a7b4a2a735866 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.clustercontroller.apps.clustercontroller;

import com.yahoo.vespa.zookeeper.ZooKeeperServer;

/**
 * ZooKeeper provider that ensures we are running our own instance of zookeeper.
 *
 * @author lulf
 * @since 5.26
 */
public class StandaloneZooKeeperProvider implements ZooKeeperProvider {
    public StandaloneZooKeeperProvider(ZooKeeperServer server) {
    }
}