Free cookie consent management tool by TermsFeed Policy Generator

Changeset 13555


Ignore:
Timestamp:
01/19/16 10:06:29 (8 years ago)
Author:
thasling
Message:

cleanup on contact server now works correct
included "hive-startup-project" to solution

Location:
branches/thasling/DistributedGA
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/thasling/DistributedGA/DistributedGA.ContactServer/ContactServiceImpl.cs

    r13538 r13555  
    7575        DateTime tmp;
    7676        if (allPeers.TryGetValue(pi, out tmp)) {
    77           //if (tmp.AddHours(1f) < deadline)
    78           if (tmp < deadline.AddHours(1f)) {
     77          if (tmp.AddHours(1f) < deadline) {
     78            //if (tmp < deadline.AddHours(1f)) {
    7979            itemsToDelete.Add(pi);
    8080          }
  • branches/thasling/DistributedGA/DistributedGA.Hive/Program.cs

    r13541 r13555  
    1 
    2 using System;
     1using System;
    32using System.ServiceModel;
    43using HeuristicLab.Clients.Hive;
  • branches/thasling/DistributedGA/DistributedGA.sln

    r13524 r13555  
    22Microsoft Visual Studio Solution File, Format Version 12.00
    33# Visual Studio 2013
    4 VisualStudioVersion = 12.0.21005.1
     4VisualStudioVersion = 12.0.31101.0
    55MinimumVisualStudioVersion = 10.0.40219.1
    66Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DistributedGA.Test", "DistributedGA.Test\DistributedGA.Test.csproj", "{E0E91C06-C56A-454F-9F7C-3FA7AE7F920E}"
     
    1515EndProject
    1616Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DistributedGA.Core.Host", "DistributedGA.Core.Host\DistributedGA.Core.Host.csproj", "{81CDDF40-E50C-4A78-90EC-D0DD43DA5690}"
     17EndProject
     18Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DistributedGA.Hive", "DistributedGA.Hive\DistributedGA.Hive.csproj", "{F191E644-1AFC-4825-8897-E79A6ED91B20}"
    1719EndProject
    1820Global
     
    4648    {81CDDF40-E50C-4A78-90EC-D0DD43DA5690}.Release|Any CPU.ActiveCfg = Release|Any CPU
    4749    {81CDDF40-E50C-4A78-90EC-D0DD43DA5690}.Release|Any CPU.Build.0 = Release|Any CPU
     50    {F191E644-1AFC-4825-8897-E79A6ED91B20}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
     51    {F191E644-1AFC-4825-8897-E79A6ED91B20}.Debug|Any CPU.Build.0 = Debug|Any CPU
     52    {F191E644-1AFC-4825-8897-E79A6ED91B20}.Release|Any CPU.ActiveCfg = Release|Any CPU
     53    {F191E644-1AFC-4825-8897-E79A6ED91B20}.Release|Any CPU.Build.0 = Release|Any CPU
    4854  EndGlobalSection
    4955  GlobalSection(SolutionProperties) = preSolution
Note: See TracChangeset for help on using the changeset viewer.