mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-07 09:05:55 +00:00
While fixing a bug that log messages were ending up in the output buffer for backups, we fixed up a bunch of things to do with log messages and output for various commands. Due to a subtle oversight, this means that since we did that, executor_test's `chkSumCluster` has been dutifully printing `hash:blahblahblah` to os.Stdout, and returning an empty string. This also, indirectly, fixes a very strange behavior we've had ever since then, which is that a lot of test output silently disappears. The reason is probably, although I haven't found the right code path, that we were ending up closing os.Stdout.
29 lines
937 B
Go
29 lines
937 B
Go
// Copyright 2022 Molecula Corp. (DBA FeatureBase).
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
package cmd
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/featurebasedb/featurebase/v3/ctl"
|
|
"github.com/featurebasedb/featurebase/v3/logger"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func newChkSumCommand(logdest logger.Logger) *cobra.Command {
|
|
cmd := ctl.NewChkSumCommand(logdest, os.Stdout)
|
|
ccmd := &cobra.Command{
|
|
Use: "chksum",
|
|
Short: "Digital signature of FeatureBase data",
|
|
Long: `
|
|
Generates a digital signature of all the data associated with a provided FeatureBase server
|
|
WARNING: could be slow if high cardinality fields exist
|
|
`,
|
|
RunE: usageErrorWrapper(cmd),
|
|
}
|
|
|
|
flags := ccmd.Flags()
|
|
flags.StringVar(&cmd.Host, "host", "localhost:10101", "host:port of FeatureBase.")
|
|
ctl.SetTLSConfig(flags, "", &cmd.TLS.CertificatePath, &cmd.TLS.CertificateKeyPath, &cmd.TLS.CACertPath, &cmd.TLS.SkipVerify, &cmd.TLS.EnableClientVerification)
|
|
return ccmd
|
|
}
|