We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdb2fc3 commit 876ac63Copy full SHA for 876ac63
plugins/dwarf/dwarf_import/src/helpers.rs
@@ -453,7 +453,11 @@ pub(crate) fn download_debug_info(
453
settings.get_string_list_with_opts("network.debuginfodServers", &mut settings_query_opts);
454
455
for debug_server_url in debug_server_urls.iter() {
456
- let artifact_url = format!("{}/buildid/{}/debuginfo", debug_server_url, build_id);
+ let artifact_url = format!(
457
+ "{}/buildid/{}/debuginfo",
458
+ debug_server_url.trim_end_matches("/"),
459
+ build_id
460
+ );
461
462
// Download from remote
463
let (tx, rx) = mpsc::channel();
0 commit comments