Skip to content
Closed
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
2 changes: 1 addition & 1 deletion packages/common/api-helper/build/src/macro_util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ pub fn __deserialize_query<T: DeserializeOwned + Send>(route: &Url) -> GlobalRes
}

#[doc(hidden)]
#[tracing::instrument(skip_all, name="setup_ctx")]
#[tracing::instrument(skip_all, name = "setup_ctx")]
pub async fn __with_ctx<
A: auth::ApiAuth + Send,
DB: chirp_workflow::db::Database + Sync + 'static,
Expand Down
18 changes: 9 additions & 9 deletions packages/common/clickhouse-inserter/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ use thiserror::Error;

#[derive(Debug, Error)]
pub enum Error {
#[error("failed to send event to ClickHouse inserter")]
ChannelSendError,
#[error("failed to send event to ClickHouse inserter")]
ChannelSendError,

#[error("serialization error: {0}")]
SerializationError(#[source] serde_json::Error),
#[error("serialization error: {0}")]
SerializationError(#[source] serde_json::Error),

#[error("failed to build reqwest client: {0}")]
ReqwestBuildError(#[source] reqwest::Error),
#[error("failed to build reqwest client: {0}")]
ReqwestBuildError(#[source] reqwest::Error),

#[error("failed to spawn background task")]
TaskSpawnError,
}
#[error("failed to spawn background task")]
TaskSpawnError,
}
Loading
Loading