Jaechang Nam created RYA-233:
--------------------------------
Summary: Un-thrown exception
Key: RYA-233
URL: https://issues.apache.org/jira/browse/RYA-233
Project: Rya
Issue Type: Bug
Reporter: Jaechang Nam
Priority: Trivial
There is a missing throw for RuntimeException in
pig/accumulo.pig/src/main/java/org/apache/rya/accumulo/pig/AccumuloStorage.java
{code}
283 if (!conf.getBoolean(AccumuloOutputFormat.class.getSimpleName() +
".configured", false)) {
284 try {
285 AccumuloOutputFormat.setConnectorInfo(job,
user, new PasswordToken(password.getBytes()));
286 } catch (AccumuloSecurityException e) {
287 new RuntimeException(e);
288 }
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)