Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/29/16 15:28:47 (8 years ago)
Author:
thasling
Message:

#2615:
finally fixed bug concerning message send to the wrong peers
also made communicationRate and messageCacheCapacity as paramters
integration in P2PMigrationAnalyzer still TBD

Location:
branches/thasling/DistributedGA/DistributedGA.Hive
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/thasling/DistributedGA/DistributedGA.Hive/P2PMigrationAnalyzer.cs

    r13943 r13956  
    9999      var lanIpPrefix = ((StringValue)(Parameters["LanIpPrefix"].ActualValue)).Value;
    100100      var contactServerUri = ((StringValue)(Parameters["ContactServerURL"].ActualValue)).Value;
    101       h.Init(lanIpPrefix, contactServerUri);
     101      var problemInstance = ((StringValue)Parameters["JobGUID"].ActualValue).Value;
     102      h.Init(lanIpPrefix, contactServerUri, problemInstance, 10000, 100);
    102103      var peer = h.GetPeerInfo();
    103       peer.ProblemInstance = ((StringValue)Parameters["JobGUID"].ActualValue).Value;
    104104    }
    105105
  • branches/thasling/DistributedGA/DistributedGA.Hive/P2PTask.cs

    r13887 r13956  
    9999                    var lanIpPrefix = ((StringValue)(Parameters["LanIpPrefix"].ActualValue)).Value;
    100100                    var contactServerUri = ((StringValue)(Parameters["ContactServerURL"].ActualValue)).Value;
    101                     h.Init(lanIpPrefix, contactServerUri);
     101                    h.Init(lanIpPrefix, contactServerUri, "TEST", 10000, 100);
    102102                    PeerInfo pi = h.GetPeerInfo();
    103103                    log.LogMessage(string.Format("Peer is hostet at IP: {0} and port: {1}", pi.IpAddress, pi.Port));
Note: See TracChangeset for help on using the changeset viewer.