Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
emulab
emulab-devel
Commits
41c858d3
Commit
41c858d3
authored
May 24, 2006
by
Robert Ricci
Browse files
In the type precheck, print out the number of nodes requested even
if there are no physical nodes of the type available.
parent
fabcd9de
Changes
1
Hide whitespace changes
Inline
Side-by-side
assign/assign.cc
View file @
41c858d3
...
...
@@ -438,7 +438,8 @@ int type_precheck(int round) {
tb_ptype_map
::
iterator
ptype_it
=
ptypes
.
find
(
vtype_it
->
first
);
if
(
ptype_it
==
ptypes
.
end
())
{
cout
<<
" *** No "
<<
round_str
<<
" physical nodes of type "
<<
vtype_it
->
first
<<
" found"
<<
endl
;
<<
vtype_it
->
first
<<
" found ("
<<
vtype_it
->
second
<<
" requested)"
<<
endl
;
ok
=
false
;
}
else
{
// Okay, there are some - are there enough?
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment