misc changes
Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
parent
c915f3dec5
commit
dc35d06c0a
4 changed files with 31 additions and 10 deletions
|
@ -320,6 +320,8 @@ pub(crate) struct Config {
|
|||
|
||||
#[serde(default)]
|
||||
pub(crate) sentry: bool,
|
||||
#[serde(default = "default_sentry_endpoint")]
|
||||
pub(crate) sentry_endpoint: Option<Url>,
|
||||
#[serde(default)]
|
||||
pub(crate) sentry_send_server_name: bool,
|
||||
#[serde(default = "default_sentry_traces_sample_rate")]
|
||||
|
@ -998,6 +1000,12 @@ fn default_url_preview_max_spider_size() -> usize {
|
|||
|
||||
fn default_new_user_displayname_suffix() -> String { "🏳️⚧️".to_owned() }
|
||||
|
||||
fn default_sentry_endpoint() -> Option<Url> {
|
||||
Url::parse("https://fe2eb4536aa04949e28eff3128d64757@o4506996327251968.ingest.us.sentry.io/4506996334657536")
|
||||
.unwrap()
|
||||
.into()
|
||||
}
|
||||
|
||||
fn default_sentry_traces_sample_rate() -> f32 { 0.15 }
|
||||
|
||||
fn default_startup_netburst_keep() -> i64 { 50 }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue