screwdriver-queue-service 4.0.4 → 4.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "screwdriver-queue-service",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.6",
|
|
4
4
|
"description": "Screwdriver Queue Service API",
|
|
5
5
|
"main": "app.js",
|
|
6
6
|
"directories": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"npm-auto-version": "^1.0.0",
|
|
29
29
|
"redlock": "^4.2.0",
|
|
30
30
|
"screwdriver-aws-producer-service": "^2.0.0",
|
|
31
|
-
"screwdriver-data-schema": "^24.
|
|
31
|
+
"screwdriver-data-schema": "^24.1.0",
|
|
32
32
|
"screwdriver-executor-docker": "^7.0.0",
|
|
33
33
|
"screwdriver-executor-jenkins": "^7.0.0",
|
|
34
34
|
"screwdriver-executor-k8s": "^16.0.0",
|
|
@@ -428,7 +428,8 @@ async function start(executor, config) {
|
|
|
428
428
|
// Bypass execution of the build if the job is virtual
|
|
429
429
|
buildUpdatePayload = {
|
|
430
430
|
status: 'SUCCESS',
|
|
431
|
-
statusMessage: 'Skipped execution of the virtual job'
|
|
431
|
+
statusMessage: 'Skipped execution of the virtual job',
|
|
432
|
+
statusMessageType: 'INFO'
|
|
432
433
|
};
|
|
433
434
|
} else {
|
|
434
435
|
const token = executor.tokenGen(
|