Project

Profile

Help

Issue #6411

Updated by CodeHeeler about 4 years ago

Full sync should take place when a repo is synced with a new remote.    After that first sync to the new remote, barring other changes, the second and subsequent syncs to this remote should be optimized. 

 That is not happening if the new remote uses the same url as the previous remote.    Instead, if no new repository version was created after the previous sync and the new remote was created after the initial repository version was created, sync, the full sync takes place without optimization.    That takes place here when this check fails and thus optimization is skipped: 
 https://github.com/pulp/pulp_rpm/blob/master/pulp_rpm/app/tasks/synchronizing.py#L341 

 You can see this take place with the existing tests if you remove the line that gives the new remote a different url: 

 ```python 
 body['url'] = RPM_RICH_WEAK_FIXTURE_URL 
 ``` 

 As seen here: 
 https://github.com/pulp/pulp_rpm/pull/1654/files#diff-8f32cf66253dff95174204c7550ff234R577

Back