jkvor / emongo

the most Emo of mongo drivers
84 stars 46 forks source link

Need to start sasl before starting emongo #13

Open marianoguerra opened 14 years ago

marianoguerra commented 14 years ago

maybe this is a documentation bug, if I try to start emongo like this:

1> application:start(emongo). {error,{not_started,sasl}}

if I start the shell with this options:

erl -pa emongo/ebin -sasl errlog_type error -eval "application:start(sasl)"

then:

1> application:start(emongo). ok

I think it should be in the REAME (or maybe there is something I'm missing)

bleeppurple commented 14 years ago

sasl's fairly common in otp applications...

for anyone wanting a quick start from console you can do this before starting emongo

application:start(sasl).

sinkovsky commented 13 years ago

Is it really a dependency, cause for example it produces too much output when I do eunit testing.