|
85 | 85 | cmdCloudSharedDisk bool |
86 | 86 | cmdFlavor string |
87 | 87 | cmdQueue string |
88 | | - cmdQueuesAvoid string |
| 88 | + cmdQueuesAvoidAdd string |
89 | 89 | cmdMisc string |
90 | 90 | cmdMonitorDocker string |
91 | 91 | cmdWithDocker string |
@@ -560,7 +560,7 @@ func init() { |
560 | 560 | addCmd.Flags().StringVar(&cmdCloudConfigs, "cloud_config_files", "", "in the cloud, comma separated paths of config files to copy to servers created to run these commands") |
561 | 561 | addCmd.Flags().BoolVar(&cmdCloudSharedDisk, "cloud_shared", false, "mount /shared") |
562 | 562 | addCmd.Flags().StringVar(&cmdQueue, "queue", "", "name of queue to submit to, for schedulers with queues") |
563 | | - addCmd.Flags().StringVar(&cmdQueuesAvoid, "queues_avoid", "interactive", |
| 563 | + addCmd.Flags().StringVar(&cmdQueuesAvoidAdd, "queues_avoid", "interactive", |
564 | 564 | "comma-separated list of substrings found in queues that should not be submitted to, for schedulers with queues") |
565 | 565 | addCmd.Flags().StringVar(&cmdMisc, "misc", "", "miscellaneous options to pass through to scheduler when submitting") |
566 | 566 | addCmd.Flags().StringVar(&cmdEnv, "env", "", "comma-separated list of key=value environment variables to set before running the commands") |
@@ -651,7 +651,7 @@ func parseCmdFile(jq *jobqueue.Client, diskSet bool) ([]*jobqueue.Job, bool, boo |
651 | 651 | CloudFlavor: cmdFlavor, |
652 | 652 | CloudShared: cmdCloudSharedDisk, |
653 | 653 | SchedulerQueue: cmdQueue, |
654 | | - SchedulerQueuesAvoid: cmdQueuesAvoid, |
| 654 | + SchedulerQueuesAvoid: cmdQueuesAvoidAdd, |
655 | 655 | SchedulerMisc: cmdMisc, |
656 | 656 | BsubMode: bsubMode, |
657 | 657 | RTimeout: rtimeoutint, |
|
0 commit comments