Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/26/08 15:34:11 (16 years ago)
Author:
msteinbi
Message:

Faked jobs replaced with real jobs (#396)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Server.Core/ClientCommunicator.cs

    r816 r823  
    66using HeuristicLab.Hive.Contracts.Interfaces;
    77using HeuristicLab.Hive.Contracts;
     8using HeuristicLab.Core;
    89
    910namespace HeuristicLab.Hive.Server.Core {
     
    5657      lock (this) {
    5758        response.JobId = jobs.Last.Value;
    58         jobs.RemoveLast();
     59        jobs.RemoveLast();
     60        response.SerializedJob = PersistenceManager.SaveToGZip(new TestJob());
    5961      }
    6062     
Note: See TracChangeset for help on using the changeset viewer.