From f6c09c65e194082f8bedb03eedde10461115702a Mon Sep 17 00:00:00 2001 From: Alejandro Avagnina Date: Mon, 3 Jun 2024 18:04:50 -0300 Subject: [PATCH] chore: increase sled init timeout to 6000s (#164) --- src/enrich/sled.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/enrich/sled.rs b/src/enrich/sled.rs index 16ee6b13..069b2248 100644 --- a/src/enrich/sled.rs +++ b/src/enrich/sled.rs @@ -71,7 +71,7 @@ impl Bootstrapper { pipeline.register_stage(spawn_stage( worker, gasket::runtime::Policy { - tick_timeout: Some(Duration::from_secs(600)), + tick_timeout: Some(Duration::from_secs(6000)), ..Default::default() }, Some("enrich-sled"), @@ -276,4 +276,4 @@ impl gasket::runtime::Worker for Worker { None => Ok(()), } } -} \ No newline at end of file +}