Skip to content

Commit

Permalink
Bugfix - AQL is not supported in rbc/rbu (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
yahavi committed Aug 24, 2020
1 parent c6265c9 commit 670aa47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions distribution/services/utils/distributionutils.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ func CreateBundleBody(createBundleParams ReleaseBundleParams, dryRun bool) (*Rel
return nil, err
}
specFile.Aql = utils.Aql{ItemsFind: query}
aql := utils.BuildQueryFromSpecFile(specFile, utils.NONE)
bundleQueries = append(bundleQueries, BundleQuery{Aql: aql})
}
aql := utils.BuildQueryFromSpecFile(specFile, utils.NONE)
bundleQueries = append(bundleQueries, BundleQuery{Aql: aql})
}

// Create release bundle struct
Expand Down

0 comments on commit 670aa47

Please sign in to comment.