e1a666d53d6b4e67083632fd64374be07029788b
rhead
  Thu Apr 5 19:44:18 2012 -0700
Changed usage statement slightly now that admins have set sudo timeout length to 30 min.
diff --git src/utils/qa/bigPush.csh src/utils/qa/bigPush.csh
index aa5e82d..356ca86 100755
--- src/utils/qa/bigPush.csh
+++ src/utils/qa/bigPush.csh
@@ -10,35 +10,33 @@
 #      requires "fg" to get to password prompt)
 #  can't redirect output into file: 
 #      use "script filename.out" to capture ?
 #  also records total size of the push
 #
 ################################
 
 set db=""
 set tablelist=""
 
 set warningMessage="\n usage:  `basename $0` database tableList\n\
 \n\
 Pushes tables in list to mysqlbeta and records size. \n\
 Requires sudo access to mypush to run.\n\
 \n\
-Do not redirect output or run in the background, as\n\
-you may be required to re-type your password if any\n\
-single table takes more than the sudo timeout length\n\
-to push. Double-check that all tables have been\n\
-pushed!\n\
+If prompted to re-type password, sudo timeout length\n\
+may not be set to a long enough interval. Check with\n\
+admins if this is the case.\n\
 \n\
 Will report total size of push and write two files:\n\
 db.tables.push -> output for all tables from mypush\n\
 db.tables.pushSize -> size of push\n"
 
 
 if ($2 == "") then
   echo $warningMessage
   exit
 else
   set db=$1
   set tablelist=$2
 endif
 
 set trackName=`echo $2 | sed -e "s/Tables//"`