19f3bd6bd473e6b5cb3835199c385e7c82329188
hiram
  Tue Aug 25 12:50:32 2020 -0700
the -priority option needs to be defined properly for the help message no redmine

diff --git src/hg/utils/automation/HgAutomate.pm src/hg/utils/automation/HgAutomate.pm
index febfb61..4a1b1a5 100755
--- src/hg/utils/automation/HgAutomate.pm
+++ src/hg/utils/automation/HgAutomate.pm
@@ -449,45 +449,47 @@
 		       'fileServer' =>
 '    -fileServer mach      Use mach (default: fileServer of the build directory)
                           for I/O-intensive steps.
 ',
 		       'dbHost' =>
 '    -dbHost mach          Use mach (default: %s) as database server.
 ',
 		       'bigClusterHub' =>
 '    -bigClusterHub mach   Use mach (default: %s) as parasol hub
                           for cluster runs with very large job counts.
 ',
 		       'smallClusterHub' =>
 '    -smallClusterHub mach Use mach (default: %s) as parasol hub
                           for cluster runs with smallish job counts.
 ',
-'    -priority num        Use this priority fo= parasol jobs.
+		       'priority' =>
+'    -priority num        Use this priority for parasol jobs.
 ',
 		       'debug' =>
 '    -debug                Don\'t actually run commands, just display them.
 ',
 		       'verbose' =>
 '    -verbose num          Set verbose level to num (default %d).
 ',
 		       'help' =>
 '    -help                 Show detailed help and exit.
 ',
 		     );
 
 my %optionDefaultDefaults = ( 'workhorse' => 'least loaded',
 			      'dbHost' => $defaultDbHost,
+			      'priority' => '10',
 			      'bigClusterHub' => 'most available',
 			      'smallClusterHub' => 'most available',
 			      'verbose' => $defaultVerbose,
 			    );
 
 
 sub getCommonOptionHelp {
   # Return description of common options, given defaults, for usage message.
   # Input is a hash of applicable options and default values (which can be
   # empty, in which case %optionDefaultDefaults will be used).
   # debug, verbose and help will be added if not specified.
   my %optionSpec = @_;
   my $help = "";
   foreach my $opName (sort keys %optionSpec) {
     if (exists $optionHelpText{$opName}) {