From 12f1fbdecee4f64679bfbea96a2c50313c61be1b Mon Sep 17 00:00:00 2001 From: Shreyas Goenka Date: Tue, 18 Feb 2025 15:02:56 +0100 Subject: [PATCH] - --- libs/daemon/daemon.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/daemon/daemon.go b/libs/daemon/daemon.go index 59bad5367..f074d057f 100644 --- a/libs/daemon/daemon.go +++ b/libs/daemon/daemon.go @@ -44,7 +44,7 @@ func (d *Daemon) Start() error { d.cmd = exec.Command(executable, d.Args...) - // Set environment variable so that the child process knows it's parent's PID. + // Set environment variable so that the child process knows its parent's PID. // In unix systems orphaned processes are automatically re-parented to init (pid 1) // so we cannot rely on os.Getppid() to get the original parent's pid. d.Env = append(d.Env, fmt.Sprintf("%s=%d", DatabricksCliParentPid, os.Getpid()))