We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9cdd863 + dafdf0a commit 3d459a6Copy full SHA for 3d459a6
1 file changed
queue_job/models/queue_job.py
@@ -94,7 +94,7 @@ class QueueJob(models.Model):
94
state = fields.Selection(STATES, readonly=True, required=True, index=True)
95
priority = fields.Integer()
96
exc_name = fields.Char(string="Exception", readonly=True)
97
- exc_message = fields.Char(string="Exception Message", readonly=True)
+ exc_message = fields.Char(string="Exception Message", readonly=True, tracking=True)
98
exc_info = fields.Text(string="Exception Info", readonly=True)
99
result = fields.Text(readonly=True)
100
0 commit comments