diff --git a/acceptance/help/output.txt b/acceptance/help/output.txt index 7310c5794..18434251d 100644 --- a/acceptance/help/output.txt +++ b/acceptance/help/output.txt @@ -139,7 +139,4 @@ Flags: -t, --target string bundle target to use (if applicable) -v, --version version for databricks -Additional help topics: - databricks stream- - Use "databricks [command] --help" for more information about a command. diff --git a/cmd/cmd.go b/cmd/cmd.go index 5178db6fd..4f5337fd3 100644 --- a/cmd/cmd.go +++ b/cmd/cmd.go @@ -77,9 +77,5 @@ func New(ctx context.Context) *cobra.Command { cli.AddCommand(version.New()) cli.AddCommand(selftest.New()) - cli.AddCommand(&cobra.Command{ - Use: "stream-", - }) - return cli } diff --git a/cmd/selftest/child.go b/cmd/selftest/child.go index 166e29aa9..622c7f79e 100644 --- a/cmd/selftest/child.go +++ b/cmd/selftest/child.go @@ -15,12 +15,7 @@ import ( // TODO: Look into the release function and ensure whether I need to call it. const () -// TODO CONTINUE: Write command that wait for each other via the PID. -// Ensure to check the process name as the PID otherwise can be reused pretty -// quick. -// -// Implement dummy child and parent commands, and write acceptance tests to account -// for all variations. +// TODO CONTINUE: // // Ensure that a robust timeout mechanism exists for the telemetry process. We // do not want the daemons to hang indefinitely. Can this also be tested? @@ -31,9 +26,6 @@ const () // parent and child process are indeed indpenedent, and that the child process // does not block the parent process. // -// All this requires some PID handler which get the process information based on -// the PID and some "name", since PIDs can be reused, being a source of flakyness. -// // TODO: Make sure to acknowledge the risk of failing when people try to delete // the binary in windows. //