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) (#52655)

close #52646
  • Loading branch information
ti-chi-bot authored Apr 17, 2024
1 parent c69f844 commit 9d3f10a
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 9d3f10a

Please sign in to comment.