Skip to content
Snippets Groups Projects
Commit 7ac76190 authored by Allen Gilliland's avatar Allen Gilliland
Browse files

Merge pull request #2025 from metabase/fix-dependency-null-check

only attempt to update dependencies when we actually get back non-null dependencies.
parents 221aee0a b4512776
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@
id (events/object->model-id topic object)]
;; entity must support dependency tracking to continue
(when (satisfies? IDependent entity)
(let [deps (dependency/dependencies entity id object)]
(when-let [deps (dependency/dependencies entity id object)]
(dependency/update-dependencies entity id deps)))))
(catch Throwable e
(log/warn (format "Failed to process dependencies event. %s" (:topic dependency-event)) 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