remove sqlite extensions to fix docker issue
UUIDs are now generated in the backend before insertion
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
use crate::domain::{
|
||||
oidc::ports::OidcMetrics,
|
||||
warren::ports::{AuthMetrics, FileSystemMetrics, WarrenMetrics},
|
||||
warren::ports::{AuthMetrics, FileSystemMetrics, OptionMetrics, WarrenMetrics},
|
||||
};
|
||||
|
||||
#[derive(Debug, Clone, Copy)]
|
||||
@@ -452,3 +452,26 @@ impl OidcMetrics for MetricsDebugLogger {
|
||||
tracing::debug!("[Metrics] OIDC get user info failed");
|
||||
}
|
||||
}
|
||||
|
||||
impl OptionMetrics for MetricsDebugLogger {
|
||||
async fn record_option_get_success(&self) {
|
||||
tracing::debug!("[Metrics] Get option succeeded");
|
||||
}
|
||||
async fn record_option_get_failure(&self) {
|
||||
tracing::debug!("[Metrics] Get option failed");
|
||||
}
|
||||
|
||||
async fn record_option_set_success(&self) {
|
||||
tracing::debug!("[Metrics] Set option succeeded");
|
||||
}
|
||||
async fn record_option_set_failure(&self) {
|
||||
tracing::debug!("[Metrics] Set option failed");
|
||||
}
|
||||
|
||||
async fn record_option_delete_success(&self) {
|
||||
tracing::debug!("[Metrics] Delete option succeeded");
|
||||
}
|
||||
async fn record_option_delete_failure(&self) {
|
||||
tracing::debug!("[Metrics] Delete option failed");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user