Skip to content

Sets the default value of remote-out-of-order to false #125

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion metrics/write.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ func NewWriteConfigFromFlags(flagReg func(name, help string) *kingpin.FlagClause
flagReg("remote-tenant-header", "Tenant ID to include in remote_write send. The default, is the default tenant header expected by Cortex.").Default("X-Scope-OrgID").
StringVar(&cfg.TenantHeader)
// TODO(bwplotka): Make this a non-bool flag (e.g. out-of-order-min-time).
flagReg("remote-out-of-order", "Enable out-of-order timestamps in remote write requests").Default("true").
flagReg("remote-out-of-order", "Enable out-of-order timestamps in remote write requests").Default("false").
BoolVar(&cfg.OutOfOrder)

return cfg
Expand Down
Loading