- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/FragmentationAction/FragmentationAutomationAction.cpp
ra6c11a r9eb71b3 242 242 // Phase One: obtain ids 243 243 mpqccontroller.requestIds(NumberJobs); 244 if (mpqccontroller.getExitflag() != 0) { 245 ELOG(1, "Could not request all ids from Server."); 246 return Action::failure; 247 } 244 if (mpqccontroller.getExitflag() != 0) 245 return Action::failure; 248 246 249 247 // Phase Two: add MPQCJobs and send … … 271 269 wait_thread.join(); 272 270 stop(); 273 if (mpqccontroller.getExitflag() != 0) { 274 ELOG(1, "Could not obtain all results from Server."); 275 return Action::failure; 276 } 271 if (mpqccontroller.getExitflag() != 0) 272 return Action::failure; 277 273 278 274 mpqccontroller.getResults(shortrangedata); … … 443 439 // Phase Six b: calculate result 444 440 vmgcontroller.waitforResults(NoJobs); 445 if (vmgcontroller.getExitflag() != 0) { 446 ELOG(1, "VMGFragmentController returned non-zero exit flag before getting results."); 441 if (vmgcontroller.getExitflag() != 0) 447 442 return Action::failure; 448 }449 443 vmgcontroller.getResults(longrangedata_both); 450 444 ASSERT( NoJobs == longrangedata_both.size(),
Note:
See TracChangeset
for help on using the changeset viewer.