Skip to content

Commit

Permalink
fix(fluyt): ensure minimal tracing
Browse files Browse the repository at this point in the history
  • Loading branch information
timonv committed Jun 3, 2024
1 parent 0d342ea commit fdf4be3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/indexing/src/storage/qdrant.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ impl Storage for Qdrant {
self.batch_size
}

#[tracing::instrument(skip(self), err)]
#[tracing::instrument(skip_all, err)]
async fn setup(&self) -> Result<()> {
self.create_index_if_not_exists().await
}

#[tracing::instrument(skip(self), err)]
#[tracing::instrument(skip_all, err)]
async fn store(&self, node: crate::ingestion_node::IngestionNode) -> Result<()> {
self.client
.upsert_points_blocking(
Expand All @@ -85,7 +85,7 @@ impl Storage for Qdrant {
Ok(())
}

#[tracing::instrument(skip(self), err)]
#[tracing::instrument(skip_all, err)]
async fn batch_store(&self, nodes: Vec<crate::ingestion_node::IngestionNode>) -> Result<()> {
self.client
.upsert_points_blocking(
Expand Down

0 comments on commit fdf4be3

Please sign in to comment.