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.Hive/3.3/HiveDao.cs

    r9363 r9365  
    239239    public DT.Task UpdateTaskState(Guid taskId, TaskState taskState, Guid? slaveId, Guid? userId, string exception) {
    240240      return ExecuteWithContext<DT.Task>((db) => {
    241         db.DeferredLoadingEnabled = false;
    242241        var task = db.Tasks.SingleOrDefault(x => x.TaskId == taskId);
    243242        task.State = taskState;
Note: See TracChangeset for help on using the changeset viewer.