tarantool / queue

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

tube:create() should check that a space with this name exists #62

Closed kostja closed 3 years ago

kostja commented 7 years ago

If a space with the same name as tube name exists, queue module does not check that this space schema has structure which is different from the desired one, and goes on (if_not_exists clause is set to true). This is error prone, since later on such queue will malfunction.

Check that the space used for queue actually is created with queue:create and complain if not.

Totktonada commented 4 years ago

Should be resolved with PR #109.