You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "Matteo Bertozzi (JIRA)" <ji...@apache.org> on 2015/06/23 23:47:42 UTC

[jira] [Created] (HBASE-13958) RESTApiClusterManager calls kill() instead of suspend() and resume()

Matteo Bertozzi created HBASE-13958:
---------------------------------------

             Summary: RESTApiClusterManager calls kill() instead of suspend() and resume()
                 Key: HBASE-13958
                 URL: https://issues.apache.org/jira/browse/HBASE-13958
             Project: HBase
          Issue Type: Bug
          Components: integration tests
    Affects Versions: 1.1.0.1, 2.0.0, 1.2.0
            Reporter: Matteo Bertozzi
            Assignee: Matteo Bertozzi
            Priority: Minor
             Fix For: 2.0.0, 1.2.0, 1.1.1
         Attachments: HBASE-13958-v0.patch

suspend() and resume() of the REST ClusterManager are calling the wrong method.
{code}
  @Override
  public void suspend(ServiceType service, String hostname, int port) throws IOException {
    hBaseClusterManager.kill(service, hostname, port);
  }

  @Override
  public void resume(ServiceType service, String hostname, int port) throws IOException {
    hBaseClusterManager.kill(service, hostname, port);
  }
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)