rq / django-rq

A simple app that provides django integration for RQ (Redis Queue)
MIT License
1.81k stars 286 forks source link

More permissive urls for customized job_ids #586

Closed dmclain closed 1 year ago

dmclain commented 1 year ago

Virtually any string is a valid rq job_id. I think the only real requirement is that it be a valid redis key, and Redis supports arbitrary binary keys. This PR expands the url patterns so that fewer customized job_ids cause a 500 while viewing the queue.

selwin commented 1 year ago

Thanks!