Changeset 20004 for trunk


Ignore:
Timestamp:
11/18/20 14:39:30 (4 years ago)
Author:
tbretz
Message:
Fixed a problem with newer boost versions.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/sqmctrl.cc

    r19459 r20004  
    160160
    161161        ostringstream str;
    162         str << "No valid answer received from " << URL() << " within " << ceil(fTimeout*1.5) << "ms";
     162        str << "No valid answer received from " << URL() << " within " << ceil(fTimeout*3/2) << "ms";
    163163        Error(str);
    164164
     
    214214        }
    215215
    216         fInTimeout.expires_from_now(boost::posix_time::milliseconds(fTimeout*1.5));
     216        fInTimeout.expires_from_now(boost::posix_time::milliseconds(fTimeout*3/2));
    217217        fInTimeout.async_wait(boost::bind(&ConnectionSQM::HandleReadTimeout,
    218218                                          this, dummy::error));
Note: See TracChangeset for help on using the changeset viewer.