소스 검색

Unbreak traffic shaper in the fault injector.

whitequark 7 년 전
부모
커밋
dc94c35da3
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/phy/fault_injector.rs

+ 1 - 1
src/phy/fault_injector.rs

@@ -48,7 +48,7 @@ impl State {
     }
 
     fn refill(&mut self, config: &Config, timestamp: u64) {
-        if self.refilled_at - timestamp > config.interval {
+        if timestamp - self.refilled_at > config.interval {
             self.tx_bucket = config.max_tx_rate;
             self.rx_bucket = config.max_rx_rate;
             self.refilled_at = timestamp;