Created
January 21, 2016 17:23
-
-
Save lenaschoenburg/22561d463d20d497358d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; Does not fail | |
(do (def conn (r/connect)) | |
(Thread/sleep 4000) | |
(-> (r/db "test") | |
(r/config) | |
(r/run conn))) | |
;;; Fails | |
(do (def conn (r/connect)) | |
(Thread/sleep 6000) | |
(-> (r/db "test") | |
(r/config) | |
(r/run conn))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment