Skip to content

Commit

Permalink
fixup! feat(runner): move client wallet and loadgen deploy to stage 0
Browse files Browse the repository at this point in the history
  • Loading branch information
mhofman committed Jan 8, 2022
1 parent da26fe8 commit dbf3f59
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions runner/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -804,13 +804,10 @@ const main = async (progName, rawArgs, powers) => {
const duration =
(stageConfig.duration != null
? Number(stageConfig.duration)
: (!(
makeTasks === makeLocalChainTasks &&
// Local tasks have nothing to do without loadgen
(chainOnly ||
// First stage is setup only by default
(currentStage === 0 && stages > 1))
) &&
: // Local tasks have nothing to do without loadgen
(!(makeTasks === makeLocalChainTasks && chainOnly) &&
// First stage is setup only by default
!(currentStage === 0 && stages > 1) &&
sharedStageDurationMinutes) ||
0) * 60;

Expand Down

0 comments on commit dbf3f59

Please sign in to comment.