Project

Profile

Help

Story #4343

Updated by pulpbot about 2 years ago

 

 **Ticket moved to GitHub**: "pulp/pulpcore/1817":https://github.com/pulp/pulpcore/issues/1817 




 ---- 


 Presently, the task record stores two primary types of metadata about the operation it performed: 

   - The name of a task (which tells you what type of task it was, sync/publish/update/etc., and where it was defined (plugin or core), 
   - CreatedResources 

 This leaves a lot of gaps that make it impossible to properly audit the history of the state of Pulp 

   - You don't know what resource was updated, or what those updates were - if it was an update task 
   - You don't know what remote was used, or whether mirror=True or False - if it was a sync task 

 >     - You can kind of figure out what the plugin type was, or what repository it was performed on, via. the name or CreatedResources, but it is implicit, not explicit. 

 

Back