Free cookie consent management tool by TermsFeed Policy Generator

Changeset 1487


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

fixed minor call issue in the ExecutionEngine (#529)

Location:
trunk/sources
Files:
3 edited

Legend:

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

    r1481 r1487  
    203203    void wcfService_SendJobCompleted(object sender, SendJobCompletedEventArgs e) {
    204204      if (e.Result.StatusMessage != ApplicationConstants.RESPONSE_COMMUNICATOR_NO_JOBS_LEFT) {
    205         bool sandboxed = true;
     205        bool sandboxed = false;
    206206
    207207        PluginManager.Manager.Initialize();
  • 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
  • trunk/sources/HeuristicLab.Hive.Engine/Properties/AssemblyInfo.frame

    r1432 r1487  
    2424using System.Runtime.InteropServices;
    2525using HeuristicLab.PluginInfrastructure;
    26 
     26using System.Security;
    2727// General Information about an assembly is controlled through the following
    2828// set of attributes. Change these attribute values to modify the information
     
    3636[assembly: AssemblyTrademark("")]
    3737[assembly: AssemblyCulture("")]
     38[assembly: AllowPartiallyTrustedCallers]
    3839
    3940// Setting ComVisible to false makes the types in this assembly not visible
Note: See TracChangeset for help on using the changeset viewer.