Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(service): Fixed libzypp repository cache removal #1349

Merged
merged 1 commit into from
Jun 17, 2024
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions service/lib/agama/software/manager.rb
Original file line number Diff line number Diff line change
Expand Up @@ -510,6 +510,9 @@ def update_repositories(new_product)
else
# delete all, the #probe call will add the new repos
repositories.delete_all
# deleting happens only in memory, to really delete the caches we need
# to write the repository setup to the disk
Yast::Pkg.SourceSaveAll
end
end
end
Expand Down
1 change: 1 addition & 0 deletions service/test/agama/software/manager_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@

before do
allow(Yast::Pkg).to receive(:TargetInitialize)
allow(Yast::Pkg).to receive(:SourceSaveAll)
allow(Yast::Pkg).to receive(:ImportGPGKey)
# allow glob to work for other calls
allow(Dir).to receive(:glob).and_call_original
Expand Down
Loading