Paulo Almeida

Results 6 comments of Paulo Almeida

``` elixir iex(1)> tokens = Exprotoc.Parser.tokenize("base.proto", ["priv"]) iex(2)> Exprotoc.Parser.parse(tokens) ** (MatchError) no match of right hand side value: {:error, {12, :proto_grammar, ['syntax error before: ', '\'}\'']}} lib/exprotoc/parser.ex:36: Exprotoc.Parser.parse/1 ``` The...

How are you trying to set `no_ack: true`? The return of the `handle_channel_opened/2` callback is `{:ok, queue, new_state, consume_options}`, where `consume_options` is a Keyword list that can include `no_ack: true`....

@arpunk I have tried to reproduce your issue with https://github.com/pma/wabbit_test. When running, I see one Connection and two Channels, as expected. Both channels show a message flow and there is...

@developerworks It's certainly possible to implement this in the adapter. When we're querying by anything other than the ID, we're using the Solr interface instead of the KV interface. And...

@developerworks The call to is done here: https://github.com/pma/riak_ecto/blob/master/lib/riak/connection.ex#L74 To support specifying a subset of fields to be retrieved, we would have to properly handle Ecto.Query in Riak.Ecto.NormalizedQuery.all/2 and make sure...