Closed
Description
Deployment Type
Self-hosted
NetBox Version
v4.1.3
Python Version
3.11
Steps to Reproduce
- Create a new
JobRunner
. - Schedule the job runner without with
enqueue(interval=0)
.
Expected Behavior
Getting a ValidationError
:
django.core.exceptions.ValidationError: {
'__all__': [
'Jobs cannot be assigned to this object type (None).'
]
}
Observed Behavior
Nothing happens, as neither Job.enqueue()
, Job.start()
nor Job.terminate()
trigger Job.clean()
.