Skip to content
Snippets Groups Projects
Commit 77cadccb authored by Danny Auble's avatar Danny Auble
Browse files

warning message about -w option with bluegene.

parent 8638bfda
No related branches found
No related tags found
No related merge requests found
...@@ -1308,6 +1308,12 @@ void set_options(const int argc, char **argv, int first) ...@@ -1308,6 +1308,12 @@ void set_options(const int argc, char **argv, int first)
opt.nodelist = xstrdup(optarg); opt.nodelist = xstrdup(optarg);
if (!_valid_node_list(&opt.nodelist)) if (!_valid_node_list(&opt.nodelist))
exit(1); exit(1);
#ifdef HAVE_BG
info("\tThis option should only be used if the block\n"
"\tyou are asking for can be created.\n"
"\tPlease consult smap before using this option\n"
"\tor your job may be stuck with no way to run.");
#endif
break; break;
case (int)'W': case (int)'W':
opt.max_wait = _get_int(optarg, "wait"); opt.max_wait = _get_int(optarg, "wait");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment