Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/13/10 16:09:22 (13 years ago)
Author:
cneumuel
Message:

#1233

  • fixed config merge process
  • worked on hive server test setup
Location:
branches/HeuristicLab.Hive-3.4/sources
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources

    • Property svn:ignore
      •  

        old new  
        11HeuristicLab.Hive-3.4.suo
        22TestResults
         3HeuristicLab.Hive 3.4.suo
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive/3.4/HiveService.cs

    r5078 r5095  
    1717  /// Implementation of the Hive service (interface <see cref="IHiveService"/>).
    1818  /// </summary>
     19  [ServiceBehavior(InstanceContextMode=InstanceContextMode.PerCall)]
    1920  public class HiveService : IHiveService {
    2021    private DataAccess.IHiveDao dao {
     
    2728      get { return ServiceLocator.Instance.AuthorizationManager; }
    2829    }
    29     private Hive hive {
    30       get { return ServiceLocator.Instance.Hive; }
     30    private ILifecycleManager lifecycleManager {
     31      get { return ServiceLocator.Instance.LifecycleManager; }
    3132    }
    3233
    3334    #region Job Methods
    34     [PrincipalPermission(SecurityAction.Demand, Role = HiveRoles.Administrator)]
    35     [PrincipalPermission(SecurityAction.Demand, Role = HiveRoles.Client)]
     35    //[PrincipalPermission(SecurityAction.Demand, Role = HiveRoles.Administrator)]
     36    //[PrincipalPermission(SecurityAction.Demand, Role = HiveRoles.Client)]
    3637    public Guid AddJob(Job job, JobData jobData) {
    3738      using (trans.OpenTransaction()) {
     
    176177    public List<MessageContainer> Heartbeat(Heartbeat heartbeat) {
    177178      using (trans.OpenTransaction()) {
    178         return hive.ProcessHeartbeat(heartbeat);
     179        return lifecycleManager.ProcessHeartbeat(heartbeat);
    179180      }
    180181    }
Note: See TracChangeset for help on using the changeset viewer.