Skip to content

Commit 4ec3af7

Browse files
committed
Change MergeWith function to support NoRandomDuplicates
1 parent de17b5f commit 4ec3af7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

stage/stage_utils.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@ func (s *Stage) MergeWith(other *Stage) *Stage {
6868
if other.RandomExecution != nil {
6969
s.RandomExecution = other.RandomExecution
7070
}
71+
if other.NoRandomDuplicates != nil {
72+
s.NoRandomDuplicates = other.NoRandomDuplicates
73+
}
7174
if other.RandomlyExecuteUntil != nil {
7275
s.RandomlyExecuteUntil = other.RandomlyExecuteUntil
7376
}

0 commit comments

Comments
 (0)