Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ tokio-util = "0.7.12"
tonic = "0.12"
tonic-health = "0.12.3"
tower = { version = "0.4.13", features = ["discover"] }
backon = "1.3.0"
backon = "1.5.2"
tracing = { version = "0.1" }
tracing-bunyan-formatter = "0.3"
tracing-opentelemetry = "0.28.0"
Expand Down
5 changes: 4 additions & 1 deletion rust/frontend/src/config.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::{
executor::config::{ExecutorConfig, LocalExecutorConfig},
executor::config::{ExecutorConfig, LocalExecutorConfig, RetryConfig},
CollectionsWithSegmentsProviderConfig,
};
use chroma_log::config::LogConfig;
Expand Down Expand Up @@ -69,6 +69,8 @@ pub struct FrontendConfig {
pub tenants_to_migrate_immediately: Vec<String>,
#[serde(default = "Default::default")]
pub tenants_to_migrate_immediately_threshold: Option<String>,
#[serde(default)]
pub retry: RetryConfig,
}

impl FrontendConfig {
Expand All @@ -87,6 +89,7 @@ impl FrontendConfig {
default_knn_index: default_default_knn_index(),
tenants_to_migrate_immediately: vec![],
tenants_to_migrate_immediately_threshold: None,
retry: RetryConfig::default(),
}
}
}
Expand Down
Loading
Loading