Only clear the %store-table when it's defined
This commit is contained in:
parent
5727703d84
commit
198b6ef719
1 changed files with 3 additions and 1 deletions
|
|
@ -575,7 +575,9 @@ WHERE job_id = $1")
|
|||
|
||||
;; Clean the cached store connections, as there are caches
|
||||
;; associated with these that take up lots of memory
|
||||
(inferior-eval '(hash-clear! %store-table) inf)
|
||||
(inferior-eval
|
||||
'(when (defined? '%store-table) (hash-clear! %store-table))
|
||||
inf)
|
||||
|
||||
warnings))))))
|
||||
checkers))))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue