Github user kkhatua commented on a diff in the pull request:
https://github.com/apache/drill/pull/1200#discussion_r179158585
--- Diff: distribution/src/resources/drillbit.sh ---
@@ -127,6 +127,44 @@ check_before_start()
fi
}
+check_after_start(){
+ #check if the process is running
+ if [ -f $pid ]; then
+ dbitProc=$(ps -ef | grep `cat $pid` | grep Drillbit)
--- End diff --
Agreed. I'll incorporate this change.---
