Actions
Bug #14109
closedincremental import does not work
Description
When attempting an incremental import, the following error occurs:
Could not synchronize the repository: no implicit conversion of Symbol into Integer
This appears to be related to the patch for #13653, which changed the format of the file list slightly.
A quick patch to incremental_import.rb:
rpm_filepaths = rpm_files.collect do |filepath| {path: filepath, filename: File.basename(filepath)} end
Then, passing rpm_filepaths to the UploadFiles action will succeed.
Actions