Browse Source

change sleep 100ms -> 1ms

master
Jonathan Strong 4 years ago
parent
commit
87302bd2fa
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/influx.rs

+ 1
- 1
src/influx.rs View File

@@ -698,7 +698,7 @@ impl InfluxWriter {
Err(_) => break 'rx
}
}
thread::sleep(Duration::from_millis(100));
thread::sleep(Duration::from_millis(1));
}
}



Loading…
Cancel
Save