screwdriver-executor-router
Advanced tools
Comparing version 2.2.0 to 2.3.0
18
index.js
@@ -183,4 +183,22 @@ 'use strict'; | ||
} | ||
/** | ||
* Verifies the status of a build in an executor | ||
* @method _start | ||
* @param {Object} config Configuration | ||
* @param {Object} [config.annotations] Optional key/value object | ||
* @param {String} config.apiUri Screwdriver's API | ||
* @param {Object} [config.build] Build object | ||
* @param {String} config.buildId Unique ID for a build | ||
* @param {String} config.container Container for the build to run in | ||
* @param {String} config.token JWT to act on behalf of the build | ||
* @return {Promise} | ||
*/ | ||
_verify(config) { | ||
const executor = this.getExecutor(config); | ||
return executor.verify(config); | ||
} | ||
} | ||
module.exports = ExecutorRouter; |
{ | ||
"name": "screwdriver-executor-router", | ||
"version": "2.2.0", | ||
"version": "2.3.0", | ||
"description": "A generic plugin for routing builds to specified executors", | ||
@@ -5,0 +5,0 @@ "main": "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
12788
175