Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/17/13 10:49:49 (11 years ago)
Author:
fschoepp
Message:

#1888:

  • WorkerRole of Slave now logs all exceptions during startup to the blobstore (slavelog).
  • The PluginManager throws an exception during CheckWorkingDirectories() (Save method) which will be caught now, preventing crashes in Windows Azure.
  • "db.DeferredLocal = false" has been removed to prevent loading bugs.
  • HiveScenarioManager doesn't crash anymore, if he can't find an algorithm within a job during retrieval of the run results.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/OaaS/HeuristicLab.Services.Optimization.Controller/HL/HiveScenarioManager.cs

    r9362 r9365  
    294294            Model.Run taskRun = new Model.Run();
    295295            taskRun.Id = taskRun.Name = run.Name;
    296             taskRun.AlgorithmName = run.Algorithm.Name;
     296            taskRun.AlgorithmName = run.Algorithm != null ? run.Algorithm.Name : run.Name;
    297297            IList<Parameter> resultValues = new List<Model.Parameter>();
    298298            foreach (var key in run.Results.Keys) {
Note: See TracChangeset for help on using the changeset viewer.