mirror of https://github.com/databricks/cli.git
cleanup
This commit is contained in:
parent
e970a129af
commit
3c4443c13f
|
@ -139,7 +139,4 @@ Flags:
|
||||||
-t, --target string bundle target to use (if applicable)
|
-t, --target string bundle target to use (if applicable)
|
||||||
-v, --version version for databricks
|
-v, --version version for databricks
|
||||||
|
|
||||||
Additional help topics:
|
|
||||||
databricks stream-
|
|
||||||
|
|
||||||
Use "databricks [command] --help" for more information about a command.
|
Use "databricks [command] --help" for more information about a command.
|
||||||
|
|
|
@ -77,9 +77,5 @@ func New(ctx context.Context) *cobra.Command {
|
||||||
cli.AddCommand(version.New())
|
cli.AddCommand(version.New())
|
||||||
cli.AddCommand(selftest.New())
|
cli.AddCommand(selftest.New())
|
||||||
|
|
||||||
cli.AddCommand(&cobra.Command{
|
|
||||||
Use: "stream-",
|
|
||||||
})
|
|
||||||
|
|
||||||
return cli
|
return cli
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,12 +15,7 @@ import (
|
||||||
// TODO: Look into the release function and ensure whether I need to call it.
|
// TODO: Look into the release function and ensure whether I need to call it.
|
||||||
const ()
|
const ()
|
||||||
|
|
||||||
// TODO CONTINUE: Write command that wait for each other via the PID.
|
// TODO CONTINUE:
|
||||||
// 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.
|
|
||||||
//
|
//
|
||||||
// Ensure that a robust timeout mechanism exists for the telemetry process. We
|
// 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?
|
// 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
|
// parent and child process are indeed indpenedent, and that the child process
|
||||||
// does not block the parent 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
|
// TODO: Make sure to acknowledge the risk of failing when people try to delete
|
||||||
// the binary in windows.
|
// the binary in windows.
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue