thothothotho

Results 4 issues of thothothotho

About that: https://github.com/streadway/amqp/blob/e6b33f460591b0acb2f13b04ef9cf493720ffe17/consumers.go#L72 I suppose the buffering was added there to consume the server flow as fast as possible. But if the consumer is slow and `autoAck` is true, it...

That kind of code: ```go r.channel.Consume(queueName, consumerID, true, false, false, false, nil) ``` is quite difficult to read. Maybe rabbitmq specialists have no problem parsing this, but I have. And...

It is now very convenient to configure a Influx client with a server url. Most Influx client libraries support that. At the moment, the client API is that: ```python def...

### Steps to reproduce Create two tables like this: ```sql create table pouet ( id integer PRIMARY key, t varchar(40) ); create table test2 ( id SERIAL primary key, pouet_id...