According to the [documentation](https://github.com/tarantool/queue#increasing-ttr-andor-ttl-for-tasks), `nil` increments should be handled w/o errors when passed to `touch()`. Currently, it's not the case: ```lua foo = queue.create_tube('foo', 'fifottl') foo:put('touch_ttr_15', {ttr=15}) foo:take(.1) foo:touch(0, msgpack.NULL) foo:touch(0, nil) ... - error: '/usr/local/share/lua/5.1/queue/abstract.lua:86: attempt to compare ''void *'' with ''number''' ``` So, either documentation or implementation should be fixed.