Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/02/09 14:48:17 (15 years ago)
Author:
kgrading
Message:

fixed minor call issue in the ExecutionEngine (#529)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Engine/HiveEngine.cs

    r1440 r1487  
    2727using HeuristicLab.Hive.JobBase;
    2828using HeuristicLab.Hive.Contracts.Interfaces;
     29using HeuristicLab.Hive.Contracts;
    2930
    3031namespace HeuristicLab.Hive.Engine {
     
    7273      HeuristicLab.Hive.Contracts.BusinessObjects.Job jobObj = new HeuristicLab.Hive.Contracts.BusinessObjects.Job();
    7374      jobObj.SerializedJob = PersistenceManager.SaveToGZip(job);
    74       executionEngineFacade.AddJob(jobObj);
     75      jobObj.State = HeuristicLab.Hive.Contracts.BusinessObjects.State.offline;
     76      ResponseObject<Contracts.BusinessObjects.Job> res = executionEngineFacade.AddJob(jobObj);
    7577    }
    7678
Note: See TracChangeset for help on using the changeset viewer.