This commit is contained in:
Shreyas Goenka 2025-02-17 19:27:53 +01:00
parent e970a129af
commit 3c4443c13f
No known key found for this signature in database
GPG Key ID: 92A07DF49CCB0622
3 changed files with 1 additions and 16 deletions

View File

@ -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.

View File

@ -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
}

View File

@ -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.
//