Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/26/10 18:17:16 (14 years ago)
Author:
cneumuel
Message:

migration from 3.2 to 3.3 completed. Hive Server and Client are now executable and as functional as they were in 3.2. (#1096)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/Facades/ClientFacade.cs

    r4092 r4107  
    8686
    8787    public ResponsePlugin SendPlugins(List<HivePluginInfoDto> pluginList) {
    88       using (contextFactory.GetContext()) {
    89         return clientCommunicator.SendPlugins(pluginList);     
    90       }
     88      return clientCommunicator.SendPlugins(pluginList);     
    9189    }
    9290
     
    122120        ResponseJob job = null;
    123121
    124         job = this.SendJob(clientId);
     122        job = ServiceLocator.GetClientCommunicator().SendJob(clientId);
    125123
    126124        //first send response
     
    147145
    148146    public Stream SendStreamedPlugins(List<HivePluginInfoDto> pluginList) {
    149       using (contextFactory.GetContext()) {
    150         return new StreamedObject<ResponsePlugin>(this.SendPlugins(pluginList));
    151       }
     147      return new StreamedObject<ResponsePlugin>(this.SendPlugins(pluginList));
    152148    }
    153149
Note: See TracChangeset for help on using the changeset viewer.