Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/23/09 16:49:40 (15 years ago)
Author:
kgrading
Message:

various changes (#467)

Location:
trunk/sources/HeuristicLab.Hive.Client.Core/3.2
Files:
3 edited

Legend:

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

    r1602 r1635  
    143143          abortRequested = true;
    144144          beat.StopHeartBeat();
     145          WcfService.Instance.Logout(ConfigManager.Instance.GetClientInfo().Id);
    145146          break;
    146147      }
     
    210211          files.AddRange(plugininfo.PluginFiles);
    211212       
    212         AppDomain appDomain = PluginManager.Manager.CreateAndInitAppDomainWithSandbox(e.Result.Job.Id.ToString(), sandboxed, typeof(HeuristicLab.Hive.Engine.HiveEngine), files);
     213        AppDomain appDomain = PluginManager.Manager.CreateAndInitAppDomainWithSandbox(e.Result.Job.Id.ToString(), sandboxed, null, files);
    213214        appDomain.UnhandledException += new UnhandledExceptionEventHandler(appDomain_UnhandledException);
    214215        lock (engines) {                   
  • trunk/sources/HeuristicLab.Hive.Client.Core/3.2/HeuristicLab.Hive.Client.Core-3.2.csproj

    r1534 r1635  
    143143      <Name>HeuristicLab.Hive.Contracts-3.2</Name>
    144144    </ProjectReference>
    145     <ProjectReference Include="..\..\HeuristicLab.Hive.Engine\3.2\HeuristicLab.Hive.Engine-3.2.csproj">
    146       <Project>{C8FEDAC1-0326-4293-B585-F0FEDDEDFC11}</Project>
    147       <Name>HeuristicLab.Hive.Engine-3.2</Name>
    148     </ProjectReference>
    149145    <ProjectReference Include="..\..\HeuristicLab.Hive.JobBase\3.2\HeuristicLab.Hive.JobBase-3.2.csproj">
    150146      <Project>{21187322-52DD-4243-80A4-A85F0263E63B}</Project>
  • trunk/sources/HeuristicLab.Hive.Client.Core/3.2/PluginCache.cs

    r1602 r1635  
    3535      List<HivePluginInfo> missingPlugins = new List<HivePluginInfo>();
    3636      bool found = false;
    37      
    38       //Todo: Fix the whole equals thing here
     37           
    3938      foreach (HivePluginInfo info in requests) {
     39        //we MAY run in problems here - if there is a plugin twice in requests, there may be added two different versions of the plugin
    4040        foreach (CachedHivePluginInfo cache in pluginCache) {
    41           if (info.Equals(cache)) {
     41          if (info.Name.Equals(cache.Name) && info.Version.Equals(cache.Version) && info.BuildDate <= cache.BuildDate) {
    4242            neededPlugins.Add(cache);
    4343            found = true;
Note: See TracChangeset for help on using the changeset viewer.