Migration from artifactory to artifact-keeper #661
-
|
When trying to migrate artifacts from artifactory to artifact-keeper I am using the following url: And with the following config: But it seems that artifact-keeper is only downloading the first 100 artifacts. What should be done to download all the artifacts from a repo? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
I’ve seen this before - the migration API caps results at 100 unless you override it. Add a {
"source_connection_id": "{{ConnectionID}}",
"job_type": "full",
"config": {
"include_repos": ["repo-gradle-release-local"],
"conflict_resolution": "skip",
"concurrent_transfers": 2,
"throttle_delay_ms": 50,
"verify_checksums": true,
"dry_run": false,
"limit": 0
}
}If that field isn’t recognized, you’ll need to paginate: repeatedly call the migration endpoint with an |
Beta Was this translation helpful? Give feedback.
Thank you. I tried with both limit 0 and limit -1 but still it just considers the first 100 artifacts. I think this is a bug that needs to be solved. I have created an issue for it (#671)