Skip to content
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

config: remove defaultTraceRegionFlow (#8009) #8065

Closed
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
1 change: 0 additions & 1 deletion server/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,6 @@
defaultLeaderPriorityCheckInterval = time.Minute

defaultUseRegionStorage = true
defaultTraceRegionFlow = true
defaultFlowRoundByDigit = 3 // KB
maxTraceFlowRoundByDigit = 5 // 0.1 MB
defaultMaxResetTSGap = 24 * time.Hour
Expand Down Expand Up @@ -1103,7 +1102,7 @@
c.DashboardAddress = defaultDashboardAddress
}
if !meta.IsDefined("trace-region-flow") {
c.TraceRegionFlow = defaultTraceRegionFlow

Check failure on line 1105 in server/config/config.go

View workflow job for this annotation

GitHub Actions / tso-function-test

undefined: defaultTraceRegionFlow

Check failure on line 1105 in server/config/config.go

View workflow job for this annotation

GitHub Actions / statics

undefined: defaultTraceRegionFlow

Check failure on line 1105 in server/config/config.go

View workflow job for this annotation

GitHub Actions / chunks (7)

undefined: defaultTraceRegionFlow

Check failure on line 1105 in server/config/config.go

View workflow job for this annotation

GitHub Actions / chunks (8)

undefined: defaultTraceRegionFlow

Check failure on line 1105 in server/config/config.go

View workflow job for this annotation

GitHub Actions / chunks (9)

undefined: defaultTraceRegionFlow

Check failure on line 1105 in server/config/config.go

View workflow job for this annotation

GitHub Actions / chunks (10)

undefined: defaultTraceRegionFlow
}
if !meta.IsDefined("flow-round-by-digit") {
configutil.AdjustInt(&c.FlowRoundByDigit, defaultFlowRoundByDigit)
Expand Down
Loading