-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed
Labels
majorA high priority issue which might affect a lot of people or large parts of the codebaseA high priority issue which might affect a lot of people or large parts of the codebase
Milestone
Description
When trying to harvest individual harvestable resources (as opposed to going through the harvester action) the method call eventually goes to call harvesting.tasks.harvest_resources(). However, the calling arguments are being passed in reverse order - it should be harvest_resources(harvestable_resource_ids, harvesting_session_id) but it is being called with harvest_resources(harvesting_session_id, harvestable_resource_ids), as seen in:
geonode/geonode/harvesting/models.py
Line 424 in 8fe9e26
| args=(self.pk, harvestable_resource_ids or []) |
Metadata
Metadata
Assignees
Labels
majorA high priority issue which might affect a lot of people or large parts of the codebaseA high priority issue which might affect a lot of people or large parts of the codebase