Free cookie consent management tool by TermsFeed Policy Generator

Changeset 2152


Ignore:
Timestamp:
07/09/09 10:56:34 (15 years ago)
Author:
gkronber
Message:

Fixed a bug in the dispatcher and improved trace more information to log files about exceptions in the GridExecuter. #676 (Cockpit for the CEDMA Server to control algorithm settings)

Location:
trunk/sources/HeuristicLab.CEDMA.Server/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.CEDMA.Server/3.3/GridExecuter.cs

    r2145 r2152  
    107107              }
    108108              catch (Exception badEx) {
    109                 HeuristicLab.Tracing.Logger.Error("CEDMA Executer: Exception in job execution thread. " + badEx.Message);
     109                HeuristicLab.Tracing.Logger.Error("CEDMA Executer: Exception in job execution thread. " + badEx.Message+Environment.NewLine+badEx.StackTrace);
    110110              }
    111111            }
  • trunk/sources/HeuristicLab.CEDMA.Server/3.3/SimpleDispatcher.cs

    r2130 r2152  
    8181      }
    8282
    83       SetProblemParameters(selectedAlgorithm, problem, targetVariable, inputVariables);
    8483
    8584      if (selectedAlgorithm != null) {
     85        SetProblemParameters(selectedAlgorithm, problem, targetVariable, inputVariables);
    8686        AddDispatchedRun(targetVariable, inputVariables, selectedAlgorithm.Name);
    8787      }
Note: See TracChangeset for help on using the changeset viewer.