Comparing version 0.11.1 to 0.12.0
@@ -5,2 +5,7 @@ # Changelog | ||
## v0.12.0 | ||
- [BREAKING] Rename general queue error to `queue:error` instead of simply `error` | ||
- Remove the `timeout` parameter from the ping operation on intiialization | ||
## v0.11.1 | ||
@@ -14,2 +19,6 @@ | ||
## v0.10.5 | ||
- Apache 2.0 license file | ||
## v0.10.4 | ||
@@ -16,0 +25,0 @@ |
@@ -7,3 +7,3 @@ 'use strict'; | ||
exports.default = { | ||
EVENT_QUEUE_ERROR: 'error', | ||
EVENT_QUEUE_ERROR: 'queue:error', | ||
EVENT_JOB_ERROR: 'job:error', | ||
@@ -10,0 +10,0 @@ EVENT_JOB_CREATED: 'job:created', |
@@ -82,3 +82,3 @@ 'use strict'; | ||
value: function _initTasks() { | ||
var initTasks = [this.client.ping({ timeout: 3000 })]; | ||
var initTasks = [this.client.ping()]; | ||
@@ -85,0 +85,0 @@ return Promise.all(initTasks).catch(function (err) { |
{ | ||
"name": "esqueue", | ||
"version": "0.11.1", | ||
"version": "0.12.0", | ||
"description": "Job queue, powered by Elasticsearch", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
45927