Compare commits

...

7 Commits

Author SHA1 Message Date
Thomas Hobson f2da04ad8b
Merge pull request #499 from neysanfoo/catch-error
add missing error in try catch
2022-08-13 13:40:49 +12:00
Thomas Hobson c673446d51
Merge branch 'master' into catch-error 2022-08-13 13:26:25 +12:00
Thomas Hobson 2ff1a9677b
Merge pull request #504 from gagbo/pkg/rust_1.62
pkg(rust-1.62.0): Fixed metadata mistake
2022-08-13 13:24:04 +12:00
Thomas Hobson c805200170
Merge branch 'master' into pkg/rust_1.62 2022-07-29 16:41:08 +12:00
neysanfoo 1867393fda
Merge branch 'master' into catch-error 2022-07-22 21:34:53 +08:00
Gerry Agbobada 5403931c16
pkg(rust-1.62.0): Fixed metadata mistake 2022-07-17 12:25:39 +02:00
Neysan Foo 52dd07ce20 fixed try catch 2022-07-04 15:24:10 +08:00
2 changed files with 2 additions and 2 deletions

View File

@ -386,7 +386,7 @@ class Job {
// Then clear them out of the process tree
try {
process.kill(proc, 'SIGKILL');
} catch {
} catch(e) {
// Could already be dead and just needs to be waited on
this.logger.debug(
`Got error while SIGKILLing process ${proc}:`,

View File

@ -1,6 +1,6 @@
{
"language": "rust",
"version": "1.56.1",
"version": "1.62.0",
"aliases": [
"rs"
]