Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/22/11 15:28:01 (13 years ago)
Author:
ascheibe
Message:

#1233

  • some admin gui updates
  • HeuristicLab.Calendar is now HeuristicLab.ExtLibs/HeuristicLab.DayView Plugin
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.4/Administration/HiveAdministrationClient.cs

    r5526 r5538  
    5050
    5151    public void UpdateSlaveGroups() {
     52      /*SlaveGroup sg = new SlaveGroup();
     53      sg.Name = "Test" + Guid.NewGuid();
     54      sg.Description = "TestGroupdesc";
     55      sg.Id = Guid.NewGuid();
     56      ServiceLocator.Instance.CallHiveService(service => service.AddSlaveGroup(sg));*/
     57
     58
    5259      ServiceLocator.Instance.CallHiveService(service => {
    53         /*SlaveGroup sg = new SlaveGroup();
    54         sg.Name = "Test" + Guid.NewGuid();
    55         sg.Description = "TestGroupdesc";
    56         sg.Id = Guid.NewGuid();
    57         service.Obj.AddSlaveGroup(sg);*/
    58 
    5960        SlaveGroups = new List<SlaveGroup>(service.GetSlaveGroups());
    6061        Slaves = new List<Slave>(service.GetSlaves());
Note: See TracChangeset for help on using the changeset viewer.