From c0d1a7b4bffd36c78f63d5fb1dde365f5de500a2 Mon Sep 17 00:00:00 2001 From: VG Date: Wed, 4 Oct 2023 12:24:02 +0800 Subject: [PATCH] chore: change default polling to 1 min (#2120) --- dozer-types/src/ingestion_types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dozer-types/src/ingestion_types.rs b/dozer-types/src/ingestion_types.rs index f7345d4357..82fb98a809 100644 --- a/dozer-types/src/ingestion_types.rs +++ b/dozer-types/src/ingestion_types.rs @@ -415,5 +415,5 @@ pub fn default_buffer_size() -> u32 { } pub fn default_snowflake_poll_interval() -> Duration { - Duration::from_secs(5) + Duration::from_secs(60) }