Selwin Ong

Results 513 comments of Selwin Ong

Definitely, can you open a PR for this? Probably a simple view displaying metrics for one of the selected queues.

I think having this as a config is not very useful. Better to show all queues and allow users to select which queues they want to show and refresh the...

Are you getting the queue using `django_rq.get_queue()`?

No, I meant when you're enqueueing the job originally.

Yeah, so I think that should work. Are your settings.py configured correctly? Alternatively you can also do `@job('long_running', timeout=1000)`

Ah ok. Then what’s needed is a feature that allows you to update job.timeout prior to requeueing it. Unfortunately this feature is not in DjangoRQ yet. If you want, I’ll...

Create an `edit_job_timeout` view in https://github.com/rq/django-rq/blob/master/django_rq/views.py#L302 This view should be reachable via job detail page: ![Selection_281](https://user-images.githubusercontent.com/188658/100594844-c4e74300-332c-11eb-9d72-4ba447667199.jpg)

It won't be automated, since the `job` object is already created and stored in Redis, complete with it's timeout. Automatically updating a value that's already stored, whether it's in DB...

The jobs are actually ordered by their expiration time (soonest to latest) but I realize this may not be very clear because the expiration time is not displayed on the...

Could you please fix the test errors so I can merge this in?