Free cookie consent management tool by TermsFeed Policy Generator

Changeset 6400


Ignore:
Timestamp:
06/09/11 10:26:35 (13 years ago)
Author:
svonolfe
Message:

Fixed some timeout related issues (#1542)

Location:
branches/MPI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/MPI/HeuristicLab.MPIAlgorithmRunner/3.3/AlgorithmBroker.cs

    r6398 r6400  
    5858      quotas.MaxArrayLength = int.MaxValue;
    5959      netTCPBinding.ReaderQuotas = quotas;
    60       netTCPBinding.SendTimeout = new TimeSpan(100000000);
    61       netTCPBinding.ReceiveTimeout = new TimeSpan(100000000);
     60      netTCPBinding.SendTimeout = new TimeSpan(600000000);
     61      netTCPBinding.ReceiveTimeout = new TimeSpan(600000000);
    6262      endpoint.Binding = netTCPBinding;
    6363      int port = FindFreeTcpPort();
  • branches/MPI/HeuristicLab.MPIEngine/3.3/MPIEngine.cs

    r6398 r6400  
    264264          netTCPBinding.ReaderQuotas = quotas;
    265265          netTCPBinding.MaxReceivedMessageSize = int.MaxValue;
    266           netTCPBinding.SendTimeout = new TimeSpan(100000000);
    267           netTCPBinding.ReceiveTimeout = new TimeSpan(100000000);
     266          netTCPBinding.SendTimeout = new TimeSpan(600000000);
     267          netTCPBinding.ReceiveTimeout = new TimeSpan(600000000);
    268268          ChannelFactory<IAlgorithmBroker> factory = new ChannelFactory<IAlgorithmBroker>(netTCPBinding, address);
    269269          IAlgorithmBroker proxy = factory.CreateChannel();
Note: See TracChangeset for help on using the changeset viewer.