Free cookie consent management tool by TermsFeed Policy Generator

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

Fixed some timeout related issues (#1542)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.