Project

Profile

Help

Story #4342

Updated by dalley about 5 years ago

Imagine the following scenario: 

 * Perform a sync with a download_policy of 'streamed' or 'on_demand' 
 * Either: 
 > * Change your mind, decide you want to download the artifacts after all, and do another sync with a remote download policy of "immediate", OR 
 > * Perform an immediate sync of Sync another repository which contains overlapping content units with the first sync 

 In either of these cases, Pulp will not do what you want.    "mirror=False" mode only looks at whether the content unit *exists*, not whether its artifacts have been downloaded.    So there is no way to perform an "immediate" sync thereafter which touches the already-created content units, unless you use "mirror=True", which can be extremely destructive. 

 Both of these schemes (leave the existing units alone vs. download the artifacts for the overlapping ones) should probably be supported (and documented).    But it would make sense to flip the current behavior around, and default to the state requested by the last-performed sync.

Back