Changes in / [2ee2cc:3e334e]


Ignore:
File:
1 edited

Legend:

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

    r2ee2cc r3e334e  
    242242    // Phase One: obtain ids
    243243    mpqccontroller.requestIds(NumberJobs);
    244     if (mpqccontroller.getExitflag() != 0)
    245       return Action::failure;
     244    if (mpqccontroller.getExitflag() != 0) {
     245      ELOG(1, "Could not request all ids from Server.");
     246      return Action::failure;
     247    }
    246248
    247249    // Phase Two: add MPQCJobs and send
     
    269271    wait_thread.join();
    270272    stop();
    271     if (mpqccontroller.getExitflag() != 0)
    272       return Action::failure;
     273    if (mpqccontroller.getExitflag() != 0) {
     274      ELOG(1, "Could not obtain all results from Server.");
     275      return Action::failure;
     276    }
    273277
    274278    mpqccontroller.getResults(shortrangedata);
     
    439443      // Phase Six b: calculate result
    440444      vmgcontroller.waitforResults(NoJobs);
    441       if (vmgcontroller.getExitflag() != 0)
     445      if (vmgcontroller.getExitflag() != 0) {
     446        ELOG(1, "VMGFragmentController returned non-zero exit flag before getting results.");
    442447        return Action::failure;
     448      }
    443449      vmgcontroller.getResults(longrangedata_both);
    444450      ASSERT( NoJobs == longrangedata_both.size(),
Note: See TracChangeset for help on using the changeset viewer.