Repository: incubator-hawq
Updated Branches:
  refs/heads/HAWQ-1297 2c6f4ed55 -> 2fe872c6d


HAWQ-1297. CR Fixes


Project: http://git-wip-us.apache.org/repos/asf/incubator-hawq/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-hawq/commit/2fe872c6
Tree: http://git-wip-us.apache.org/repos/asf/incubator-hawq/tree/2fe872c6
Diff: http://git-wip-us.apache.org/repos/asf/incubator-hawq/diff/2fe872c6

Branch: refs/heads/HAWQ-1297
Commit: 2fe872c6d38eb356a45c2749f450461048d8f856
Parents: 2c6f4ed
Author: Shivram Mani <shivram.m...@gmail.com>
Authored: Thu Jan 26 16:19:04 2017 -0800
Committer: Shivram Mani <shivram.m...@gmail.com>
Committed: Thu Jan 26 16:19:04 2017 -0800

----------------------------------------------------------------------
 pxf/Makefile                            |  9 +++------
 pxf/pxf-service/src/scripts/pxf-service | 15 +++++++--------
 2 files changed, 10 insertions(+), 14 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/2fe872c6/pxf/Makefile
----------------------------------------------------------------------
diff --git a/pxf/Makefile b/pxf/Makefile
index c8afe92..81298d0 100644
--- a/pxf/Makefile
+++ b/pxf/Makefile
@@ -26,7 +26,7 @@ else
     else ifneq "$(GPHOME)" ""
         BUILD_PARAMS= -DdeployPath="$(GPHOME)/pxf"
     else
-        @echo "Cannot invoke install without either PXF_HOME or GPHOME 
configured"
+               @echo "Cannot invoke install without configuring either 
PXF_HOME or GPHOME"
     endif
 endif
 
@@ -40,8 +40,8 @@ endif
 
 help:
        @echo 
-       @echo   "help it is then"
-       @echo   "Possible targets"
+       @echo"help it is then"
+       @echo   "Possible targets"
        @echo   "  - all (clean, build, unittest, jar, tar, rpm)"
        @echo   "  -  -  HD=<phd|hdp> - set classpath to match hadoop 
distribution. default phd"
        @echo   "  -  -  LICENSE=<license info> - add license info to created 
RPMs"
@@ -78,6 +78,3 @@ tomcat:
 
 install:
        ./gradlew install $(BUILD_PARAMS)
-
-
-

http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/2fe872c6/pxf/pxf-service/src/scripts/pxf-service
----------------------------------------------------------------------
diff --git a/pxf/pxf-service/src/scripts/pxf-service 
b/pxf/pxf-service/src/scripts/pxf-service
index 6809ca6..6dbb259 100644
--- a/pxf/pxf-service/src/scripts/pxf-service
+++ b/pxf/pxf-service/src/scripts/pxf-service
@@ -80,7 +80,6 @@ function createInstance()
 
        chown -R $instance_owner $instance_root
        chmod 700 $instance_root/$instance_name
-
        return 0
 }
 
@@ -270,8 +269,8 @@ function doStart()
                return 1
        fi
        patchWebapp || return 1
-    commandWebapp start || return 1
-    checkWebapp 300 || return 1
+       commandWebapp start || return 1
+       checkWebapp 300 || return 1
 }
 
 #
@@ -281,11 +280,11 @@ function doStart()
 #
 function doStop()
 {
-       instanceExists
-       if [ $? -ne 0 ]; then
-               echo ERROR: cant find PXF instance, maybe call init?
-               return 1
-       fi
+    instanceExists
+    if [ $? -ne 0 ]; then
+        echo "ERROR: can't find PXF instance, maybe call init?"
+        return 1
+    fi
     commandWebapp stop || return 1
 }
 

Reply via email to