Skip to content

Commit acf675b

Browse files
committed
Transactions implemented
1 parent 6d1fb92 commit acf675b

File tree

7 files changed

+772
-206
lines changed

7 files changed

+772
-206
lines changed

project.clj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@
1010
[org.clojure/data.codec "0.1.0"]
1111
[prismatic/schema "1.0.5"]
1212
[clojurewerkz/neocons "3.1.0"]
13+
[com.taoensso/timbre "4.3.1"]
1314
[environ "1.0.2"]]
1415
:plugins [[lein-environ "1.0.2"]]
1516
:profiles {:dev {}}
17+
:jvm-opts ["-Xmx1g" "-server"]
1618
)
1719

src/grape/analysis.clj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@
104104
nacs (reduce (fn [xs x] (if (= 'NAC (first x)) (cons (nth x 2) xs) xs)) '() (:els (second (:read r))))
105105
st5 (reduce (fn [st n] (add-graph-elements-to-symtable st :nac n)) st4 nacs)
106106
]
107-
(doall (map validate-st-entry st5))
107+
;(doall (map validate-st-entry st5))
108+
true
108109
))
109110

0 commit comments

Comments
 (0)