Skip to content

Commit

Permalink
DOCS fix-typos (#3894)
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Clegg <[email protected]>
  • Loading branch information
mattclegg authored Jul 25, 2024
1 parent d22ff77 commit 672b708
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/tempo/app/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ func (c *Config) RegisterFlagsAndApplyDefaults(prefix string, f *flag.FlagSet) {
f.IntVar(&c.Server.GRPCListenPort, "server.grpc-listen-port", 9095, "gRPC server listen port.")

// Memberlist settings
fs := flag.NewFlagSet("", flag.PanicOnError) // create a new flag set b/c we don't want all of the memberlist settings in our flags. we're just doing this to get defaults
fs := flag.NewFlagSet("", flag.PanicOnError) // create a new flag set b/c we don't want all the memberlist settings in our flags. we're just doing this to get defaults
c.MemberlistKV.RegisterFlags(fs)
_ = fs.Parse([]string{})
// these defaults were chosen to balance resource usage vs. ring propagation speed. they are a "toned down" version of
Expand Down
2 changes: 1 addition & 1 deletion tempodb/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ type SearchConfig struct {
// vParquet blocks
ReadBufferCount int `yaml:"read_buffer_count"`
ReadBufferSizeBytes int `yaml:"read_buffer_size_bytes"`
// todo: consolidate caching conffig in one spot
// todo: consolidate caching config in one spot
CacheControl CacheControlConfig `yaml:"cache_control"`
}

Expand Down

0 comments on commit 672b708

Please sign in to comment.