Skip to content

Commit 08eba92

Browse files
authored
Remove references to queue.start() (#11)
1 parent 7f2be57 commit 08eba92

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,10 @@ is configured, up and running. The minimal required configuration might look lik
2626
```lua
2727
-- queues.lua
2828

29-
box.cfg {}
29+
box.cfg {listen=3301}
3030

3131
queue = require('queue')
32-
queue.start()
33-
34-
queue.create_tube('foobar', 'fifottl', { if_not_exists=true })
32+
queue.create_tube('foobar', 'fifottl', {if_not_exists=true})
3533
```
3634

3735
> You can read more about the box configuration in the official [Tarantool documentation](http://tarantool.org/doc/book/configuration/index.html#initialization-file).

tests/Integration/queues.lua

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ console = require('console')
1818
console.listen('127.0.0.1:33333')
1919

2020
queue = require('queue')
21-
queue.start()
2221

2322
function create_tube(tube_name, tube_type, opts)
2423
if queue.tube[tube_name] then

0 commit comments

Comments
 (0)