From 6f63e14cb74b8fca6350e3f541496e72936ee008 Mon Sep 17 00:00:00 2001 From: Shreyas Goenka Date: Tue, 18 Feb 2025 14:26:56 +0100 Subject: [PATCH] - --- cmd/selftest/child.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/selftest/child.go b/cmd/selftest/child.go index b792575e2..3a880f45e 100644 --- a/cmd/selftest/child.go +++ b/cmd/selftest/child.go @@ -20,7 +20,7 @@ func newChildCommand() *cobra.Command { // Note: The golang stdlib only provides a way to wait on processes // that are children of the current process. While it's possible to // rely on os native syscalls to wait on arbitrary processes, it's hard - // to get right and unit test. So I opted to just rely on the wait_pid + // to get right and test. So I opted to just rely on the wait_pid // script here. waitCmd := exec.Command("bash", "-euo", "pipefail", "wait_pid", os.Getenv(daemon.DatabricksCliParentPid)) b, err := waitCmd.Output()