Lines Matching refs:patchset
183 patchset=str(rev['_number']),
217 async def check_new_cl(change_id: str, rev_hash: str, cl: str, patchset: str,
230 logging.debug('check_new_cl(%s-%s)', cl, patchset)
232 'GET', '%s/cls/%s-%s/wants_vote.json' % (DB, cl, patchset))
235 logging.info('Updating wants_vote flag on %s-%s', cl, patchset)
237 'PUT', '%s/cls/%s-%s/wants_vote.json' % (DB, cl, patchset), body=True)
240 await check_pending_cl(cl_and_ps='%s-%s' % (cl, patchset))
241 logging.debug('check_new_cl(%s-%s): already queued', cl, patchset)
247 await cancel_older_jobs(cl=cl, patchset=patchset)
249 src = 'cls/%s-%s' % (cl, patchset)
252 patch_obj['cls_pending/%s-%s' % (cl, patchset)] = 0
261 logging.debug('check_new_cl(%s-%s): queueing jobs', cl, patchset)
265 async def cancel_older_jobs(cl: str, patchset: str):
273 if cl_obj.get('time_ended') or ps >= int(patchset):