tarantool / queue

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

Fix custom driver registration after box.cfg() #137

Closed LeonidVas closed 3 years ago

LeonidVas commented 3 years ago

Now if a custom driver is registered after calling box.cfg() it causes a problem when the instance will be restarted. The cause of the problem is an attempt to recreate a tube of custom type (which is not registered yet). It's needed to implement a deferment of creating a custom tube until the custom driver will be registered.