From dcadfba2f1e36f8db1a43870c139025a42812b90 Mon Sep 17 00:00:00 2001 From: Luiggi Tenorio Date: Wed, 24 Apr 2024 15:58:22 +0200 Subject: [PATCH] fix joblist db schema --- autosubmit/job/job_list_persistence.py | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/autosubmit/job/job_list_persistence.py b/autosubmit/job/job_list_persistence.py index 791de7864..48c638db2 100644 --- a/autosubmit/job/job_list_persistence.py +++ b/autosubmit/job/job_list_persistence.py @@ -124,10 +124,22 @@ class JobListPersistenceDb(JobListPersistence): VERSION = 3 JOB_LIST_TABLE = 'job_list' - TABLE_FIELDS = ['name', 'id', 'status', 'priority', - 'section', 'date', 'member', 'chunk', - 'local_out', 'local_err', - 'remote_out', 'remote_err'] + TABLE_FIELDS = [ + "name", + "id", + "status", + "priority", + "section", + "date", + "member", + "chunk", + "split", + "local_out", + "local_err", + "remote_out", + "remote_err", + "wrapper_type", + ] def __init__(self, persistence_path, persistence_file): self.db_manager = DbManager(persistence_path, persistence_file, self.VERSION) -- GitLab