We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2cb1529 commit 959ac31Copy full SHA for 959ac31
lib/runner/extensions/event.command.js
@@ -591,10 +591,14 @@ module.exports = {
591
(this.state._variables = new sdk.VariableScope(result._variables));
592
593
// persist the pm.variables for the next request in the current iteration
594
- const partitionIndex = payload.coords.partitionIndex;
+ // DO NOT REMOVE.
595
+ const partitionIndex = cursor.partitionIndex;
596
597
result && result._variables &&
598
typeof partitionIndex === 'number' &&
599
+ this.partitionManager &&
600
+ this.partitionManager.partitions &&
601
+ this.partitionManager.partitions[partitionIndex] &&
602
(this.partitionManager.partitions[partitionIndex]
603
.variables._variables = new sdk.VariableScope(result._variables));
604
0 commit comments