Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/10/11 17:44:18 (12 years ago)
Author:
ascheibe
Message:

#1672

  • don't serialize the results 2 times before uploading
  • made slave a little bit more robust
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Clients.Hive.Slave/3.3/Core.cs

    r6998 r7166  
    9898        }
    9999        ShutdownCore();
    100       }
    101       finally {
     100      } finally {
    102101        DeregisterServiceEvents();
    103102        waitShutdownSem.Release();
     
    334333        if (task == null) throw new TaskNotFoundException(e.Value.TaskId);
    335334        task.ExecutionTime = e.Value.ExecutionTime;
    336         TaskData taskData = e.Value.GetTaskData();
     335        TaskData taskData = e.Value2;
    337336        wcfService.UpdateTaskData(task, taskData, configManager.GetClientInfo().Id, TaskState.Paused);
    338337      }
     
    352351        if (task == null) throw new TaskNotFoundException(e.Value.TaskId);
    353352        task.ExecutionTime = e.Value.ExecutionTime;
    354         TaskData taskData = e.Value.GetTaskData();
     353        TaskData taskData = e.Value2;
    355354        wcfService.UpdateTaskData(task, taskData, configManager.GetClientInfo().Id, TaskState.Finished);
    356355      }
Note: See TracChangeset for help on using the changeset viewer.