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 9131edb commit 8394280Copy full SHA for 8394280
cli/daemon/daemon.go
@@ -41,7 +41,12 @@ import (
41
"google.golang.org/grpc"
42
)
43
44
-var tr = i18n.Tr
+var (
45
+ tr = i18n.Tr
46
+ daemonize bool
47
+ debug bool
48
+ debugFilters []string
49
+)
50
51
// NewCommand created a new `daemon` command
52
func NewCommand() *cobra.Command {
@@ -61,10 +66,6 @@ func NewCommand() *cobra.Command {
61
66
return cmd
62
67
}
63
68
64
-var daemonize bool
65
-var debug bool
-var debugFilters []string
-
69
func runDaemonCommand(cmd *cobra.Command, args []string) {
70
71
if configuration.Settings.GetBool("metrics.enabled") {
0 commit comments