Merge pull request #681 from MarinPostma/sentry-release-only

enables debug without sentry
This commit is contained in:
Clément Renault 2020-05-14 11:33:22 +02:00 committed by GitHub
commit c95d4e48a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 7 deletions

View File

@ -1,5 +1,6 @@
## v0.10.2
- Disable sentry in debug (#681)
- Add support for facet count (#676)
- Add support for faceted search (#631)
- Add support for configuring the lmdb map size (#646, #647)

View File

@ -20,13 +20,13 @@ static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
async fn main() -> Result<(), MainError> {
let opt = Opt::from_args();
#[cfg(feature = "sentry")]
#[cfg(all(not(debug_assertions), feature = "sentry"))]
let _sentry = sentry::init((
"https://5ddfa22b95f241198be2271aaf028653@sentry.io/3060337",
sentry::ClientOptions {
release: sentry::release_name!(),
..Default::default()
},
"https://5ddfa22b95f241198be2271aaf028653@sentry.io/3060337",
sentry::ClientOptions {
release: sentry::release_name!(),
..Default::default()
},
));
match opt.env.as_ref() {
@ -38,7 +38,7 @@ async fn main() -> Result<(), MainError> {
);
}
#[cfg(feature = "sentry")]
#[cfg(all(not(debug_assertions), feature = "sentry"))]
if !opt.no_analytics {
sentry::integrations::panic::register_panic_handler();
sentry::integrations::env_logger::init(None, Default::default());