Well, the problem is that map produces a lazy sequence and you realize this sequence after connection to neo4j is closed.
This is not a bug of Borneo or Clojure, but it is a programmers mistake. You have to realize a lazy sequence e.g. with doall before you close the connection. It is not good to always realize results from borneo.core, because we would loose all the benefits of lazy sequences. Only thing I can modify in Borneo is to update the documentation so it would warn programmers of such behavior. Jozef -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en
