Sergey Romanov
Sergey Romanov
Hi! I've just changed the if-else statement, since better not to use `else` as much as possible. Please review it
Hi! Seems variable `numPartsAssumed` is unused and it can return error early. Please review it
Hi! I've just simplified one if-else statement. Please check and review this
This PR would be useful, if will be posible in the future, specify Mist with some options. For example: ``` go obj := mist.New(&MistOptions{SizeLimit: 10}) ``` Or, it can be...
Hi guys! It looks, that [append](http://redis.io/commands/append) command is missing, so i added it. ``` javascript var r = redismock.createClient(); r.append("foo", "bar1", function(err, result) { r.append("foo", "bar2", function(err, result) { r.get("foo",...
A little bit changes after applying of `gofmt`
Hi! I've just added `metrics` method to Agent for get list of metrics. See [docs](https://www.consul.io/api/agent.html#view-metrics). Please check it and let me know if need to fix something