Skip to content
Snippets Groups Projects
Commit bac5b99c authored by srosse's avatar srosse
Browse files

no-jira: fix NPE if task was deleted

parent 6de78ef4
No related branches found
No related tags found
No related merge requests found
...@@ -57,7 +57,7 @@ public class PersistentTaskRunnable implements Runnable { ...@@ -57,7 +57,7 @@ public class PersistentTaskRunnable implements Runnable {
} catch (Throwable e) { } catch (Throwable e) {
DBFactory.getInstance().rollbackAndCloseSession(); DBFactory.getInstance().rollbackAndCloseSession();
markAsFailed(task); markAsFailed(task);
log.error("Error while running task in a separate thread: " + task.getKey(), e); log.error("Error while running task in a separate thread: " + (task == null ? "NULL" : task.getKey()), e);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment