Updated Branches: refs/heads/0.1.5 73515b045 -> 8765cd9de
BLUR:134 ulimit not working with ubuntu Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/8765cd9d Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/8765cd9d Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/8765cd9d Branch: refs/heads/0.1.5 Commit: 8765cd9de5ecfc541616b2410f1a6a7ebea616ca Parents: 73515b0 Author: Gagan <[email protected]> Authored: Mon Jun 10 20:53:07 2013 +0530 Committer: Gagan <[email protected]> Committed: Mon Jun 10 20:53:07 2013 +0530 ---------------------------------------------------------------------- blur-core/src/main/java/org/apache/blur/thrift/ThriftServer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/8765cd9d/blur-core/src/main/java/org/apache/blur/thrift/ThriftServer.java ---------------------------------------------------------------------- diff --git a/blur-core/src/main/java/org/apache/blur/thrift/ThriftServer.java b/blur-core/src/main/java/org/apache/blur/thrift/ThriftServer.java index 8bcad81..ac08285 100644 --- a/blur-core/src/main/java/org/apache/blur/thrift/ThriftServer.java +++ b/blur-core/src/main/java/org/apache/blur/thrift/ThriftServer.java @@ -59,7 +59,7 @@ public class ThriftServer { private TServerEventHandler _eventHandler; public static void printUlimits() throws IOException { - ProcessBuilder processBuilder = new ProcessBuilder("ulimit", "-a"); + ProcessBuilder processBuilder = new ProcessBuilder("bash", "-c" ,"ulimit -a"); Process process; try { process = processBuilder.start();
