mirror of
https://github.com/flibusta-apps/services_manager_server.git
synced 2025-12-06 12:35:39 +01:00
Fix
This commit is contained in:
@@ -20,7 +20,7 @@ tokio = { version = "1.28.2", features = ["full"] }
|
|||||||
axum = { version = "0.6.18", features = ["json"] }
|
axum = { version = "0.6.18", features = ["json"] }
|
||||||
axum-prometheus = "0.4.0"
|
axum-prometheus = "0.4.0"
|
||||||
chrono = "0.4.26"
|
chrono = "0.4.26"
|
||||||
sentry = "0.31.5"
|
sentry = { version = "0.31.5", features = ["debug-images"] }
|
||||||
|
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.37"
|
||||||
tracing-subscriber = { version = "0.3.17", features = ["env-filter"]}
|
tracing-subscriber = { version = "0.3.17", features = ["env-filter"]}
|
||||||
|
|||||||
12
src/main.rs
12
src/main.rs
@@ -3,9 +3,10 @@ pub mod db;
|
|||||||
pub mod prisma;
|
pub mod prisma;
|
||||||
pub mod views;
|
pub mod views;
|
||||||
|
|
||||||
|
use sentry::{ClientOptions, types::Dsn, integrations::debug_images::DebugImagesIntegration};
|
||||||
use tracing::info;
|
use tracing::info;
|
||||||
|
|
||||||
use std::net::SocketAddr;
|
use std::{net::SocketAddr, str::FromStr};
|
||||||
|
|
||||||
async fn start_app() {
|
async fn start_app() {
|
||||||
let app = views::get_router().await;
|
let app = views::get_router().await;
|
||||||
@@ -27,7 +28,14 @@ async fn main() {
|
|||||||
.compact()
|
.compact()
|
||||||
.init();
|
.init();
|
||||||
|
|
||||||
let _guard = sentry::init(config::CONFIG.sentry_dsn.clone());
|
let options = ClientOptions {
|
||||||
|
dsn: Some(Dsn::from_str(&config::CONFIG.sentry_dsn).unwrap()),
|
||||||
|
default_integrations: false,
|
||||||
|
..Default::default()
|
||||||
|
}
|
||||||
|
.add_integration(DebugImagesIntegration::new());
|
||||||
|
|
||||||
|
let _guard = sentry::init(options);
|
||||||
|
|
||||||
start_app().await;
|
start_app().await;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user