[ https://issues.apache.org/jira/browse/HIVE-16910?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Rui Li updated HIVE-16910: -------------------------- Resolution: Fixed Fix Version/s: 3.0.0 Status: Resolved (was: Patch Available) Pushed to master. Thanks [~belugabehr] for the fix! > 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 > Assignee: BELUGA BEHR > Priority: Minor > Fix For: 3.0.0 > > Attachments: HIVE-16910.1.patch > > > {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)