stefanwille / crystal-redis

Full featured Redis client for Crystal
MIT License
381 stars 61 forks source link

fix blpop, brpop when no data #107

Closed kostya closed 3 years ago

kostya commented 4 years ago

commit d5587eb8c70c8cf1d4e4d3f862ade2ed533ad50c break behavior of blpop, when there is no data it raises Empty enumerable (Enumerable::EmptyError), because of result.first. Fix it to return empty array, as it was before.