Updated Branches: refs/heads/trunk 9506b34dd -> 75f2b707b
SQOOP-607: In-process Hive CLI driver does not work (David Robson via Jarek Jarcec Cecho) Project: http://git-wip-us.apache.org/repos/asf/sqoop/repo Commit: http://git-wip-us.apache.org/repos/asf/sqoop/commit/75f2b707 Tree: http://git-wip-us.apache.org/repos/asf/sqoop/tree/75f2b707 Diff: http://git-wip-us.apache.org/repos/asf/sqoop/diff/75f2b707 Branch: refs/heads/trunk Commit: 75f2b707b60a3540a19e675e8a583c16d3f2db75 Parents: 9506b34 Author: Jarek Jarcec Cecho <[email protected]> Authored: Wed Sep 19 11:02:09 2012 +0200 Committer: Jarek Jarcec Cecho <[email protected]> Committed: Wed Sep 19 11:02:09 2012 +0200 ---------------------------------------------------------------------- .../sqoop/util/SubprocessSecurityManager.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/sqoop/blob/75f2b707/src/java/org/apache/sqoop/util/SubprocessSecurityManager.java ---------------------------------------------------------------------- diff --git a/src/java/org/apache/sqoop/util/SubprocessSecurityManager.java b/src/java/org/apache/sqoop/util/SubprocessSecurityManager.java index 4951627..7a861a0 100644 --- a/src/java/org/apache/sqoop/util/SubprocessSecurityManager.java +++ b/src/java/org/apache/sqoop/util/SubprocessSecurityManager.java @@ -80,7 +80,7 @@ public class SubprocessSecurityManager extends SecurityManager { */ public void checkExit(int status) { LOG.debug("Rejecting System.exit call with status=" + status); - throw new ExitSecurityException(status); + throw new com.cloudera.sqoop.util.ExitSecurityException(status); } @Override
