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.
1 parent 705a7b5 commit 0c3b35fCopy full SHA for 0c3b35f
ipyparallel/controller/sqlitedb.py
@@ -155,6 +155,7 @@ class SQLiteDB(BaseDB):
155
'error',
156
'stdout',
157
'stderr',
158
+ 'label',
159
]
160
)
161
# sqlite datatypes for checking that db is current format
@@ -182,6 +183,7 @@ class SQLiteDB(BaseDB):
182
183
'error': 'text',
184
'stdout': 'text',
185
'stderr': 'text',
186
+ 'label': 'text',
187
}
188
189
@@ -303,7 +305,8 @@ def _init_db(self):
303
305
execute_result text,
304
306
error text,
307
stdout text,
- stderr text)
308
+ stderr text,
309
+ label text)
310
"""
311
312
self._db.commit()
0 commit comments