We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cca284f commit 475ca34Copy full SHA for 475ca34
1 file changed
bottlecap/src/config/mod.rs
@@ -220,7 +220,6 @@ impl ConfigBuilder {
220
if self.config.logs_config_logs_dd_url.is_empty() {
221
self.config.logs_config_logs_dd_url = build_fqdn_logs(self.config.site.clone());
222
} else {
223
- // If Logs URL is set, ensure it is prefixed correctly
224
self.config.logs_config_logs_dd_url =
225
logs_intake_url(self.config.logs_config_logs_dd_url.as_str());
226
}
@@ -485,7 +484,6 @@ fn build_fqdn_logs(site: String) -> String {
485
484
format!("https://http-intake.logs.{site}")
486
487
488
-/// Ensures logs intake URL is prefixed with https://
489
#[inline]
490
#[must_use]
491
fn logs_intake_url(url: &str) -> String {
0 commit comments