We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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)
The text was updated successfully, but these errors were encountered:
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).
Sorry, something went wrong.
Is it really a dependency, cause for example it produces too much output when I do eunit testing.
No branches or pull requests
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)
The text was updated successfully, but these errors were encountered: