]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/helpers/utils.js
Video lib/model/reqvalidator refractoring
[github/Chocobozzz/PeerTube.git] / server / helpers / utils.js
CommitLineData
9f10b292 1'use strict'
8c308c2b 2
9f10b292 3var logger = require('./logger')
8c308c2b 4
9f10b292
C
5var utils = {
6 cleanForExit: cleanForExit
7}
8c308c2b 8
9f10b292
C
9function cleanForExit (webtorrent_process) {
10 logger.info('Gracefully exiting.')
11 process.kill(-webtorrent_process.pid)
12}
0ae2e7f7 13
9f10b292 14// ---------------------------------------------------------------------------
c45f7f84 15
9f10b292 16module.exports = utils