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
…ask` (#52647)

close #52646
  • Loading branch information
JaySon-Huang authored Apr 17, 2024
1 parent 5bb8ed7 commit 1b3700c
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 @@ -781,7 +781,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 1b3700c

Please sign in to comment.