You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "BELUGA BEHR (JIRA)" <ji...@apache.org> on 2017/06/15 18:50:00 UTC

[jira] [Created] (HIVE-16910) RpcConfiguration - Improper Cast From Long To Int

BELUGA BEHR created HIVE-16910:
----------------------------------

             Summary: RpcConfiguration - Improper Cast From Long To Int
                 Key: HIVE-16910
                 URL: https://issues.apache.org/jira/browse/HIVE-16910
             Project: Hive
          Issue Type: Bug
          Components: Spark
    Affects Versions: 2.1.1, 3.0.0
            Reporter: BELUGA BEHR
            Priority: Minor


{code:title=org.apache.hive.spark.client.rpc.RpcConfiguration}
  long getConnectTimeoutMs() {
    String value = config.get(HiveConf.ConfVars.SPARK_RPC_CLIENT_CONNECT_TIMEOUT.varname);
    return value != null ? Integer.parseInt(value) : DEFAULT_CONF.getTimeVar(
      HiveConf.ConfVars.SPARK_RPC_CLIENT_CONNECT_TIMEOUT, TimeUnit.MILLISECONDS);
  }
{code}

This method returns a *long* but it is trying to parse the configuration string into an *int*.
 {{Integer.parseInt}}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)