Skip to content

Instantly share code, notes, and snippets.

@oleschoenburg
Created January 21, 2016 17:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oleschoenburg/22561d463d20d497358d to your computer and use it in GitHub Desktop.
Save oleschoenburg/22561d463d20d497358d to your computer and use it in GitHub Desktop.
;;; 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