We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ae353d commit a24a7f5Copy full SHA for a24a7f5
libs/telemetry/protos/databricks_cli_log.go
@@ -24,10 +24,12 @@ type ExecutionContext struct {
24
FromWebTerminal bool `json:"from_web_terminal,omitempty"`
25
26
// Time taken for the CLI command to execute.
27
- ExecutionTimeMs int64 `json:"execution_time_ms,omitempty"`
+ // We want to serialize the zero value as well so the omitempty tag is not set.
28
+ ExecutionTimeMs int64 `json:"execution_time_ms"`
29
30
// Exit code of the CLI command.
- ExitCode int64 `json:"exit_code,omitempty"`
31
32
+ ExitCode int64 `json:"exit_code"`
33
}
34
35
type CliTestEvent struct {
0 commit comments