tarantool / queue

Create task queues, add and take jobs, monitor failed tasks
Other
236 stars 52 forks source link

fix the shadowing of the variable "space" #143

Closed LeonidVas closed 3 years ago

LeonidVas commented 3 years ago

The local variable "space" is defined twice in recreate_tube(). First time it's a name of the space, the second - it's a space object. If there is no space, we will try to thrown an error with the name of the space, but nil will be used instead.