Skip to content

Commit

Permalink
updated dep
Browse files Browse the repository at this point in the history
  • Loading branch information
adranwit committed Aug 13, 2024
1 parent b22f312 commit 6b904a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service/session/state.go
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ func (s *Session) SetState(ctx context.Context, parameters state.Parameters, aSt
wg := sync.WaitGroup{}
for i, _ := range group { //populate non data view parameters first
parameter := group[i]
if parameter.Scope != opts.scope || (opts.scope == "" && parameter.Scope == "async") {
if parameter.Scope != opts.scope && !(parameter.Scope == "async" && opts.scope == "") {
continue
}
wg.Add(1)
Expand Down

0 comments on commit 6b904a7

Please sign in to comment.