99b625ce815df6e44a1b9b577969be12facd5727
jcasper
  Fri Jul 26 10:51:26 2013 -0700
realTime.csh now checks hgw6 instead of 8, since 8 is going away refs #8132
diff --git src/utils/qa/realTime.csh src/utils/qa/realTime.csh
index 1948eeb..2d86507 100755
--- src/utils/qa/realTime.csh
+++ src/utils/qa/realTime.csh
@@ -15,31 +15,31 @@
 set db=""
 set verbosity="0"
 set dot=( '.' '.' '.' '.' )
 set update=""
 
 if ( $#argv < 2 || $#argv > 3 ) then
   echo
   echo "  gets update times from all machines in real time for tables in list." 
   echo
   echo "    usage:  database table/list [verbose]"
   echo
   echo " output:"
   echo " . hgwdev"
   echo " . hgwbeta"
   echo
-  echo " . hgw8"
+  echo " . hgw6"
   echo " . genome-euro"
   echo
   exit
 else
   set db=$argv[1]
   set tablelist=$argv[2]
 endif
 # cat $tablelist
 
 
 if ( $#argv == 3 ) then
   if ( $argv[3] == "verbose" ) then
     set verbosity=1
     set dot=( 'dev ' 'beta' 'rr  ' 'euro' )
   else
@@ -56,31 +56,31 @@
 endif
 
 # check if it is a file or a tablename
 file $tablelist | egrep "ASCII text" > /dev/null
 if (! $status) then
   set tables=`cat $tablelist`
 else
   set tables=$tablelist
 endif
 
 foreach table ($tables)
   echo
   echo $table
   echo "============="
   set i=1
-  foreach machine ( hgwdev hgwbeta hgw8 genome-euro )
-    if ( "hgw8" == $machine ) then
+  foreach machine ( hgwdev hgwbeta hgw6 genome-euro )
+    if ( "hgw6" == $machine ) then
       echo  # space out results
     endif
     set update=`getTableStatus.csh $db $machine | sed '1,2d' \
       | grep -w ^$table | awk '{print $14, $15}'`
     if ( $status ) then
       echo "$dot[$i]"
       @ i = $i + 1
       continue
     endif
     echo "$dot[$i] "$update
     @ i = $i + 1
   end
 end
 echo