kong-admin-node-client
Advanced tools
Comparing version 1.0.8 to 1.0.9
@@ -7,3 +7,3 @@ let kongAPI = require('./src/kong-api'), | ||
process.on('unhandledRejection', (err) => { | ||
logger.error(error); | ||
logger.error(err); | ||
}) |
{ | ||
"name": "kong-admin-node-client", | ||
"version": "1.0.8", | ||
"version": "1.0.9", | ||
"description": "Kong admin API client in node", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -22,3 +22,3 @@ let httpHelper = require('./http-helper'), | ||
// Create APIs | ||
if (apis) { | ||
if (apis && apis.length > 0) { | ||
await this.createApis(apis); | ||
@@ -28,3 +28,3 @@ } | ||
// Config root plugins: | ||
if (rootPlugins) { | ||
if (rootPlugins && rootPlugins.length > 0) { | ||
await this.createPlugins(rootPlugins); | ||
@@ -31,0 +31,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
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
32340