Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2265370

Browse files
committed
fix(perf): cloud reporter, calculate insertId correctly so that we don’t loose rows!
1 parent 03c21a8 commit 2265370

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/benchpress/src/cloud_reporter.es6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ class CloudReporter {
118118
}
119119
_convertToTableRow(benchpressRow, stableSample) {
120120
return {
121-
insertId: this.benchmarkConfig.runId+'#'+benchpressRow.index,
121+
insertId: this.benchmarkConfig.runId+'#'+this.benchmarkConfig.id+'#'+benchpressRow.index,
122122
json: {
123123
runId: this.benchmarkConfig.runId,
124124
benchmarkId: this.benchmarkConfig.id,

0 commit comments

Comments
 (0)