Comparing version 1.8.0 to 1.8.1
@@ -25,3 +25,4 @@ 'use strict' | ||
this._exchange_name = opts.exchange || 'remit' | ||
this._prefetch = opts.prefetch || 128 | ||
this._prefetch = parseInt(opts.prefetch) | ||
if (isNaN(this._prefetch)) this._prefetch = 128 | ||
@@ -28,0 +29,0 @@ // Global items |
{ | ||
"name": "remit", | ||
"version": "1.8.0", | ||
"version": "1.8.1", | ||
"description": "A small set of functionality used to create microservices that don't need to be aware of one-another's existence.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
46919
788