Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions libmamba/src/api/channel_loader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,9 @@ namespace mamba

LOG_DEBUG << "Shard index fetched for " << subdir.name();
const auto& channel = subdir.channel();
std::string current_repodata_url = subdir.repodata_url().str();
std::string current_repodata_url = subdir.repodata_url().str(
specs::CondaURL::Credentials::Show
);
if (python_minor_version_for_prefilter.has_value())
{
LOG_DEBUG << "Shard prefilter on python minor version enabled with "
Expand Down Expand Up @@ -472,7 +474,9 @@ namespace mamba
continue;
}
auto si = std::move(sidx_result.value().value());
std::string sdir_url = subdirs[j].repodata_url().str();
std::string sdir_url = subdirs[j].repodata_url().str(
specs::CondaURL::Credentials::Show
);
all_shards.emplace_back(
std::move(si),
sdir_url,
Expand Down
Loading