Skip to content

Commit

Permalink
execdetails: Fix max_remote_stream shown in `execution info.tiflash_t…
Browse files Browse the repository at this point in the history
  • Loading branch information
JaySon-Huang committed May 7, 2024
1 parent 128177a commit 629eb39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/util/execdetails/execdetails.go
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ func (crs *CopRuntimeStats) RecordOneCopTask(address string, summary *tipb.Execu
minLocalStreamMs: summary.GetTiflashScanContext().GetMinLocalStreamMs(),
maxLocalStreamMs: summary.GetTiflashScanContext().GetMaxLocalStreamMs(),
minRemoteStreamMs: summary.GetTiflashScanContext().GetMinRemoteStreamMs(),
maxRemoteStreamMs: summary.GetTiflashScanContext().GetMaxLocalStreamMs(),
maxRemoteStreamMs: summary.GetTiflashScanContext().GetMaxRemoteStreamMs(),
regionsOfInstance: make(map[string]uint64),
}}, threads: int32(summary.GetConcurrency()),
totalTasks: 1,
Expand Down

0 comments on commit 629eb39

Please sign in to comment.