Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
slapos
Commits
acfb0f48
Commit
acfb0f48
authored
Aug 30, 2023
by
Léo-Paul Géneau
👾
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
software/js-drone: handle sigint
parent
dfda86b6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
5 deletions
+6
-5
software/js-drone/buildout.hash.cfg
software/js-drone/buildout.hash.cfg
+1
-1
software/js-drone/drone-scripts/main.js.jinja2
software/js-drone/drone-scripts/main.js.jinja2
+5
-4
No files found.
software/js-drone/buildout.hash.cfg
View file @
acfb0f48
...
...
@@ -30,7 +30,7 @@ md5sum = d12fbb134c587173ddff46ff1bc6ffe7
[main]
_update_hash_filename_ = drone-scripts/main.js.jinja2
md5sum =
9a8ec8a2778f63789f39291795f47e98
md5sum =
dfc0ae336c45950846a6e0cf754093a6
[pubsub]
_update_hash_filename_ = drone-scripts/pubsub.js.jinja2
...
...
software/js-drone/drone-scripts/main.js.jinja2
View file @
acfb0f48
...
...
@@ -10,6 +10,7 @@ import {
} from {{ json_module.dumps(qjs_wrapper) }};
import {
Worker,
SIGINT,
SIGTERM,
dup2,
setTimeout,
...
...
@@ -17,9 +18,8 @@ import {
} from "os";
import { err, exit, open, out } from "std";
(function (arm, console, dup2, err, exit, open, out, scriptArgs,
setTimeout, start, stop, stopPubsub, takeOffAndWait, Worker,
SIGTERM) {
(function (arm, console, dup2, err, exit, open, out, scriptArgs, setTimeout,
start, stop, stopPubsub, takeOffAndWait, Worker, SIGINT, SIGTERM) {
"use strict";
var CONF_PATH = {{ json_module.dumps(configuration) }},
...
...
@@ -68,6 +68,7 @@ import { err, exit, open, out } from "std";
}
signal(SIGTERM, exitWorker.bind(null, 0));
signal(SIGINT, exitWorker.bind(null, 0));
function exitOnFail(ret, msg) {
if (ret) {
...
...
@@ -180,4 +181,4 @@ import { err, exit, open, out } from "std";
}
};
}(arm, console, dup2, err, exit, open, out, scriptArgs, setTimeout, start, stop,
stopPubsub, takeOffAndWait, Worker, SIGTERM));
stopPubsub, takeOffAndWait, Worker, SIG
INT, SIG
TERM));
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment