Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/FragmentationAction/FragmentationAutomationAction.cpp

    ra6c11a r9eb71b3  
    242242    // Phase One: obtain ids
    243243    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;
    248246
    249247    // Phase Two: add MPQCJobs and send
     
    271269    wait_thread.join();
    272270    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;
    277273
    278274    mpqccontroller.getResults(shortrangedata);
     
    443439      // Phase Six b: calculate result
    444440      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)
    447442        return Action::failure;
    448       }
    449443      vmgcontroller.getResults(longrangedata_both);
    450444      ASSERT( NoJobs == longrangedata_both.size(),
Note: See TracChangeset for help on using the changeset viewer.