diff options
author | 2016-07-05 19:55:59 +0300 | |
---|---|---|
committer | 2016-07-05 19:55:59 +0300 | |
commit | 17e8c035f98516e53902aeb8e537806b61504792 (patch) | |
tree | 4bef0a1603ca050323e864f0e8947ce72646f885 | |
parent | cb24ce32d2e959c4fef0e2f4cd4d9d0e46179d18 (diff) |
original delay was 10 miliseconds not 10 seconds, new default will cover it.
-rw-r--r-- | src/main_dpdk.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main_dpdk.cpp b/src/main_dpdk.cpp index 905899d4..adf460d7 100644 --- a/src/main_dpdk.cpp +++ b/src/main_dpdk.cpp @@ -5635,7 +5635,7 @@ void CTRexExtendedDriverBase1GVm::get_extended_stats(CPhyEthIF * _if,CPhyEthIFSt } int CTRexExtendedDriverBase1GVm::wait_for_stable_link(){ - wait_x_sec(9 + CGlobalInfo::m_options.m_wait_before_traffic); + wait_x_sec(CGlobalInfo::m_options.m_wait_before_traffic); return (0); } |