Package net.sf.katta.protocol.upgrade

Examples of net.sf.katta.protocol.upgrade.UpgradeAction.upgrade()


    }
    MasterQueue queue = _protocol.publishMaster(this);
    if (queue != null) {
      UpgradeAction upgradeAction = UpgradeRegistry.findUpgradeAction(_protocol, Version.readFromJar());
      if (upgradeAction != null) {
        upgradeAction.upgrade(_protocol);
      }
      _protocol.setVersion(Version.readFromJar());
      LOG.info(getMasterName() + " became master with " + queue.size() + " waiting master operations");
      startNodeManagement();
      MasterContext masterContext = new MasterContext(_protocol, this, _deployPolicy, queue);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.