Skip to content

Commit

Permalink
Merge pull request #2031 from filipesilva/remove-tx-nil-eater
Browse files Browse the repository at this point in the history
rfct: remove block-uid-nil-eater from txs
  • Loading branch information
neotyk committed Feb 21, 2022
2 parents 075e88a + fbdfcee commit 1a1deeb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/cljc/athens/common_db.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -829,14 +829,16 @@
[db tx-data]
#?(:cljs
(as-> tx-data $
(wrap-span "block-uid-nil-eater"
;; Hasn't really found any problems in a while, and
;; does a full index scan so it's pretty slow.
#_(wrap-span "block-uid-nil-eater"
(block-uid-nil-eater db $))
(wrap-span "linkmaker"
(linkmaker db $))
(wrap-span "orderkeeper"
(orderkeeper db $)))
:clj (->> tx-data
(block-uid-nil-eater db)
#_(block-uid-nil-eater db)
(linkmaker db)
(orderkeeper db))))

Expand Down

0 comments on commit 1a1deeb

Please sign in to comment.