Fork me on GitHub
#onyx
<
2015-07-30
>
clojuregeek03:07:31

I’m stuck 😞 working on the lambdajam challenges .. 2-2

26 │        {:onyx/name :times
  27 │         :onyx/fn :lambdajam/challenge-2-2/times
  28 │         :onyx/type :function
  29 │         :my/param  3
  30 │         :onyx/params [:my/param]
  31 │         :onyx/batch-size batch-size
  32 │         :onyx/batch-timeout batch-timeout
  33 │         :onyx/doc "add 3”}

clojuregeek03:07:59

am i missing something? I was not sure if :my/param is ok or if that should be the name of the module ?

clojuregeek03:07:39

i run the test and it just seems to go forever..

trptcolin03:07:11

@clojuregeek: yeah i remember similar issues - if you tail -f onyx.log that should give you some insights into what's failing

clojuregeek03:07:42

ah ok … thanks … had the wrong onyx function simple_smile

clojuregeek03:07:51

:lambdajam.challenge-2-2/times not :lambdajam/challenge-2-2/times

michaeldrogalis14:07:00

@clojuregeek: If you get super stuck, git checkout answers simple_smile

clojuregeek14:07:32

oh hehe simple_smile thanks