developerworks
developerworks
+1 Elixir (1.1.1)
``` ➜ sublime_completion iex -S mix Erlang/OTP 18 [erts-7.1] [source] [64-bit] [smp:8:8] [async-threads:10] [kernel-poll:false] Compiled lib/sublime_completion.ex Generated sublime_completion app =INFO REPORT==== 27-Nov-2015::13:03:59 === application: logger exited: stopped type: temporary **...
I am also encountered the issue. ``` shell Traceback (most recent call last): File "/Applications/Sublime Text.app/Contents/MacOS/sublime_plugin.py", line 358, in on_query_completions res = callback.on_query_completions(v, prefix, locations) File "/Users/hezhiqiang/Library/Application Support/Sublime Text 3/Packages/ElixirSublime/elixir_sublime.py",...
Issue is fixed. If you installed wget by macports, you should also install the `curl-ca-bundle` by following command line: ``` sudo port install curl-ca-bundle ``` and edit `~/.wgetrc`: ``` echo...
@MediosZ I can not compile it, can you have a look what is problems on this. I compiled `master` branch of [`https://github.com/blackbeam/rust-mysql-simple`](https://github.com/blackbeam/rust-mysql-simple) `SUCCESSFULLY` ## Error messages ``` cargo r --bin...
Seems like the `realm_to_db_name` function could not get the `Realm` argument in `erwa_broker` module on line number `271`: https://github.com/bwegh/erwa/blob/master/src/erwa_broker.erl#L271 ``` realm_to_db_name(Realm) -> Prefix = , binary_to_atom(>, utf8 ). ``` And...
### Env OS X El Capitan 10.11.2 ``` ➜ simple_client git:(master) ✗ which iex /Users/hezhiqiang/.kiex/elixirs/elixir-1.2.5/bin/iex ➜ simple_client git:(master) ✗ which erl /Users/hezhiqiang/.kerl/installs/18.3_dtrace/bin/erl ➜ simple_client git:(master) ✗ rebar3 -v rebar 3.1.1...
I think it's better have a way i can specify all subscriptions or a group of subscriptions use one queue. i have not find a way to bind subscription to...
@groundmuffin I kown this, i means it's good if the configuration options can be pass to `rabbitmq-pub-sub` throuth `AmqpPubSub` configurations or something else, because i have not use `rabbitmq-pub-sub` directly.
May be the `config` key of AmqpPubSub configuration object is the place to rabbitmq configurations, such as: host, port, username,password, exchange, queue, durability, auto_delete and so on. ``` const pubsub...