Skip to content

Commit

Permalink
Fix: pass operator_csv_modifications_url param to userparams
Browse files Browse the repository at this point in the history
operator_csv_modifications_url option was not passed to user params at
client side

* CLOUDBLD-3976

Signed-off-by: Martin Bašti <mbasti@redhat.com>
  • Loading branch information
MartinBasti committed Feb 16, 2021
1 parent 7338c7f commit 2cf718a
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions osbs/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -773,16 +773,18 @@ def _do_create_prod_build(self,

req_labels = self._check_labels(repo_info)

user_params = self.get_user_params(base_image=repo_info.base_image,
build_type=build_type,
component=component,
flatpak=flatpak,
isolated=isolated,
koji_target=target,
koji_task_id=koji_task_id,
req_labels=req_labels,
repo_info=repo_info,
**kwargs)
user_params = self.get_user_params(
base_image=repo_info.base_image,
build_type=build_type,
component=component,
flatpak=flatpak,
isolated=isolated,
koji_target=target,
koji_task_id=koji_task_id,
req_labels=req_labels,
repo_info=repo_info,
operator_csv_modifications_url=operator_csv_modifications_url,
**kwargs)

build_request = self.get_build_request(inner_template=inner_template,
outer_template=outer_template,
Expand Down

0 comments on commit 2cf718a

Please sign in to comment.