On 15 August 2017 at 11:27, Robert Marshall robert.marshall@codethink.co.uk wrote:
Neil Williams neil.williams@linaro.org writes:
Neil
Thanks for this response, comments below:
Typo in my example.
On 15 August 2017 at 10:04, Robert Marshall robert.marshall@codethink.co.uk wrote:
Hi,
I've got 2 jobs stuck in canceled mode which are preventing any other job from running.
I'm running lava (2017-7) in a VM and have tried rebooting the VM to clear the issue but without success (ie the jobs still block the queue).
an extract from /var/log/lava-server/django.log is attached
That's reporting that there was no start_time or end_time associated with the test job. It sounds like a bug but I'm not clear on how to reproduce it. For now, you can modify the test job to have a start and end time. Try: $ sudo lava-server manage shell
import time from lava_scheduler_app.models import TestJob job = TestJob.objects.filter(id=123456)
job = TestJob.objects.get(id=123456)
or
job = TestJob.objects.filter(id=123456)[0]
Filter returns a QuerySet (which is a list).
job.start_time job.start_time = time.now() job.end_time job.end_time = time.now() job.save()
i.e. if there is no start time, modify both start and end time. If there's no end_time, just add an end_time.
Something appears deeply garbled here in the lava structures, I assume the id for the filter is the one in the recent jobs list rather than some internal value
job = TestJob.objects.filter(id=24) job.start_time Traceback (most recent call last): AttributeError: 'RestrictedTestJobQuerySet' object has no attribute 'start_time'
type(job) <class 'lava_scheduler_app.managers.RestrictedTestJobQuerySet'>
and there's no save function either
To attempt to remember the sequence of operations
- I updated the data dictionary - the health check had been logging that it wasn't using soft reboot which 2016 was doing so I made a change - prob wrong - to try to add that.
- That job started but showed no output, I left it for 10 mins or so
- I cancelled it
- I then put back the data dictionary as it was and submitted another health check
- that queued so I decided to reboot
Robert
I get this 500 error when viewing the results for the job
Is there a manual way of clearing this? The health check has notification associated with it (and set to verbose) and every time I reboot I get an email and irc saying that it's finished!
Robert
Lava-users mailing list Lava-users@lists.linaro.org https://lists.linaro.org/mailman/listinfo/lava-users
Lava-users mailing list Lava-users@lists.linaro.org https://lists.linaro.org/mailman/listinfo/lava-users