Comparing version 4.1.2 to 4.1.3
@@ -0,1 +1,7 @@ | ||
# 4.1.3 | ||
Ironium will honor `BEANSTALKD_HOSTNAME` and `BEANSTALKD_PORT` environment | ||
variables if present. | ||
# 4.1.2 | ||
@@ -2,0 +8,0 @@ |
@@ -1,1 +0,1 @@ | ||
{"project_id":"563b895873d0cd0005000058","token":"uCJUkl8X8XuHKLTB5VwVVf_0-Ng","host":"mq-aws-us-east-1-1.iron.io"} | ||
{"project_id":"55fac602ece3570006000009","token":"94a1GMz6f_g1EeFAsLcgaIVSZ6k","host":"mq-aws-us-east-1-2.iron.io"} |
@@ -49,4 +49,4 @@ 'use strict'; | ||
// Beanstalkd | ||
this.host = config.host || BEANSTALKD_HOSTNAME; | ||
this.port = config.port || BEANSTALKD_PORT; | ||
this.host = config.host || process.env.BEANSTALKD_HOSTNAME || BEANSTALKD_HOSTNAME; | ||
this.port = config.port || process.env.BEANSTALKD_PORT || BEANSTALKD_PORT; | ||
this._webhookURL = LOCAL_WEBHOOKURL; | ||
@@ -53,0 +53,0 @@ } |
{ | ||
"name": "ironium", | ||
"version": "4.1.2", | ||
"version": "4.1.3", | ||
"scripts": { | ||
@@ -24,8 +24,8 @@ "lint": "eslint .", | ||
"devDependencies": { | ||
"eslint": "^3.7.1", | ||
"husky": "^0.11.7", | ||
"ioredis": "^2.3.0", | ||
"mocha": "^3.0.2", | ||
"nock": "^9.0.2", | ||
"timekeeper": "^1.0.0" | ||
"eslint": "^3.7", | ||
"husky": "^0.13", | ||
"ioredis": "^2.3", | ||
"mocha": "^3.0", | ||
"nock": "^9.0", | ||
"timekeeper": "^1.0" | ||
}, | ||
@@ -32,0 +32,0 @@ "homepage": "https://www.npmjs.com/package/ironium", |
@@ -48,3 +48,3 @@ 'use strict'; | ||
before(function(done) { | ||
setTimeout(done, 2000); | ||
setTimeout(done, 3000); | ||
}); | ||
@@ -51,0 +51,0 @@ |
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
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 2 instances 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
119724
22