Skip to content

Commit

Permalink
remove sentry DSN
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesxu123 committed Feb 29, 2024
1 parent 18e7695 commit 44d1640
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ async fn rabbit_mq() -> Result<(), Box<dyn Error>> {
#[tokio::main]
async fn main() {
simple_logger::SimpleLogger::new().env().init().unwrap();
let _guard = sentry::init(("https://1b28ead56fa7e331950400907c469ec7@o4506832412999680.ingest.sentry.io/4506832415031296", sentry::ClientOptions {
let _guard = sentry::init((env::var("SENTRY_DSN").expect("SENTRY_DSN not configured"), sentry::ClientOptions {
release: sentry::release_name!(),
..Default::default()
}));
Expand Down

0 comments on commit 44d1640

Please sign in to comment.