This PR introduces the functionality to add a description and labels to jobs in the Warp Protocol. This will help in better understanding and categorizing the jobs.
Changes
The Job struct now includes a description field and a labels field (3a286e).
The CreateJobMsg now includes a description field and a labels field, which will be used to create a new job with the provided description and labels (3a286e).
The UpdateJobMsg now includes optional description and labels fields to allow updating these fields for a job (3a286e).
The reply function has been updated to include the job's description and labels in the response (3a286e).
The create_job, delete_job, update_job, execute_job, and evict_job functions have all been updated to handle the new description and labels fields (3a286e).
Impact
These changes will provide more information about jobs and improve their categorization, which could lead to better management and understanding of the jobs.
Summary
This PR introduces the functionality to add a description and labels to jobs in the Warp Protocol. This will help in better understanding and categorizing the jobs.
Changes
Job
struct now includes adescription
field and alabels
field (3a286e).CreateJobMsg
now includes adescription
field and alabels
field, which will be used to create a new job with the provided description and labels (3a286e).UpdateJobMsg
now includes optionaldescription
andlabels
fields to allow updating these fields for a job (3a286e).reply
function has been updated to include the job's description and labels in the response (3a286e).create_job
,delete_job
,update_job
,execute_job
, andevict_job
functions have all been updated to handle the newdescription
andlabels
fields (3a286e).Impact
These changes will provide more information about jobs and improve their categorization, which could lead to better management and understanding of the jobs.