- Timestamp:
- 04/02/09 14:48:17 (16 years ago)
- Location:
- trunk/sources
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Client.Core/Core.cs
r1481 r1487 203 203 void wcfService_SendJobCompleted(object sender, SendJobCompletedEventArgs e) { 204 204 if (e.Result.StatusMessage != ApplicationConstants.RESPONSE_COMMUNICATOR_NO_JOBS_LEFT) { 205 bool sandboxed = true;205 bool sandboxed = false; 206 206 207 207 PluginManager.Manager.Initialize(); -
trunk/sources/HeuristicLab.Hive.Engine/HiveEngine.cs
r1440 r1487 27 27 using HeuristicLab.Hive.JobBase; 28 28 using HeuristicLab.Hive.Contracts.Interfaces; 29 using HeuristicLab.Hive.Contracts; 29 30 30 31 namespace HeuristicLab.Hive.Engine { … … 72 73 HeuristicLab.Hive.Contracts.BusinessObjects.Job jobObj = new HeuristicLab.Hive.Contracts.BusinessObjects.Job(); 73 74 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); 75 77 } 76 78 -
trunk/sources/HeuristicLab.Hive.Engine/Properties/AssemblyInfo.frame
r1432 r1487 24 24 using System.Runtime.InteropServices; 25 25 using HeuristicLab.PluginInfrastructure; 26 26 using System.Security; 27 27 // General Information about an assembly is controlled through the following 28 28 // set of attributes. Change these attribute values to modify the information … … 36 36 [assembly: AssemblyTrademark("")] 37 37 [assembly: AssemblyCulture("")] 38 [assembly: AllowPartiallyTrustedCallers] 38 39 39 40 // Setting ComVisible to false makes the types in this assembly not visible
Note: See TracChangeset
for help on using the changeset viewer.