Skip to content

Instantly share code, notes, and snippets.

@lenaschoenburg
Created January 21, 2016 17:23
Show Gist options
  • Save lenaschoenburg/22561d463d20d497358d to your computer and use it in GitHub Desktop.
Save lenaschoenburg/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