Просмотр исходного кода

[editor] Don't error on missing status for query history

Johan Ahlen 5 лет назад
Родитель
Сommit
4768bd45eb
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      desktop/libs/notebook/src/notebook/api.py

+ 1 - 1
desktop/libs/notebook/src/notebook/api.py

@@ -630,7 +630,7 @@ def get_history(request):
         'data': {
             'statement': statement[:1001] if statement else '',
             'lastExecuted': notebook['snippets'][0].get('lastExecuted', -1),
-            'status': notebook['snippets'][0]['status'],
+            'status': notebook['snippets'][0].get('status', ''),
             'parentSavedQueryUuid': notebook.get('parentSavedQueryUuid', '')
         } if notebook['snippets'] else {},
         'absoluteUrl': doc.get_absolute_url(),