Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Ning Shang committed Dec 10, 2020
1 parent 533d8bd commit be8046f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ class LocalTrainingService implements TrainingService {
const pid = trialJob.pid;
setTimeout(((pid: number) => {
tkill(pid, 'SIGKILL', (err) => {
this.log.warning(`cancel trial job {pid: ${pid}} failed: ${err?.message}`);
this.log.warning(`cancel trial job {pid: ${pid}} failed: ${err}`);
});
}).bind(this), 5 * 1000, pid);

Expand Down

0 comments on commit be8046f

Please sign in to comment.