We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e024456 commit b0ebcf5Copy full SHA for b0ebcf5
Dockerfile
@@ -1,6 +1,6 @@
1
FROM debian:buster-slim
2
3
-ENV DENO_VERSION=1.10.2
+ENV DENO_VERSION=1.14.2
4
ARG DEBIAN_FRONTEND=noninteractive
5
6
RUN apt-get -qq update \
src/deno/BrowserRunner.ts
@@ -124,7 +124,7 @@ export class BrowserRunner {
124
// `proc.kill` would error, as the `pid` to-be-killed can not be found.
125
if (this.proc && this.proc.pid && !this._closed) {
126
try {
127
- this.proc.kill(9);
+ this.proc.kill("SIGKILL");
128
} catch (error) {
129
throw new Error(
130
`${PROCESS_ERROR_EXPLANATION}\nError cause: ${error.stack}`
0 commit comments