From 36a10cb21906a2679ef2286bd110e38b5d614ad7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mehmet=20Emin=20Karaka=C5=9F?= Date: Fri, 3 Nov 2023 14:07:20 +0300 Subject: [PATCH] development --- src/main.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index b47dfec..02afc83 100644 --- a/src/main.rs +++ b/src/main.rs @@ -20,7 +20,6 @@ use crate::cli::Output; use crate::elastic::collect; use crate::parser::MultiLine; use cli::Commands::Send; -use std::{thread, time}; #[tokio::main] async fn main() -> Result<(), Box> { @@ -93,7 +92,6 @@ async fn main() -> Result<(), Box> { } } let _ = File::flush(&mut file_write); - thread::sleep(time::Duration::from_millis(10)); } } };