Skip to content

Commit

Permalink
Updated README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
bbedwell committed Jan 12, 2016
1 parent 2280315 commit 2e0cd8b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Expand Up @@ -46,7 +46,11 @@ var tortoise = new Tortoise('amqp://localhost');

```javascript
var Tortoise = require('tortoise');
var options = { connectionPoolCount: 5 }
var options = {
connectionPoolCount: 5,
connectRetries: -1,
connectRetryInterval: 1000
};
var tortoise = new Tortoise('amqp://localhost', options);
```

Expand Down

0 comments on commit 2e0cd8b

Please sign in to comment.