Skip to content

Commit fd787da

Browse files
authored
Merge pull request #1072 from AlmaLinux/bug_fixes
Bug fixes
2 parents f5d8b4f + 5da49a9 commit fd787da

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

alws/dramatiq/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ async def _build_done(request: build_node_schema.BuildDone):
183183
await build_node_crud.fast_fail_other_tasks_by_ref(db, build_task)
184184
await db.flush()
185185

186-
build_id = build_task.id
186+
build_id = build_task.build_id
187187

188188
# We don't want to create the test tasks until all build tasks
189189
# of the same build_id are completed.

reference_data/platform_flavors.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -217,21 +217,21 @@
217217

218218
- name: EPEL-7
219219
repositories:
220-
- name: epel
220+
- name: epel-7
221221
arch: x86_64
222222
type: rpm
223223
url: https://el7.repo.almalinux.org/epel/7/x86_64/
224224
production: false
225225
debug: false
226226
priority: 10
227-
- name: epel
227+
- name: epel-7
228228
arch: aarch64
229229
type: rpm
230230
url: https://el7.repo.almalinux.org/epel/7/aarch64/
231231
production: false
232232
debug: false
233233
priority: 10
234-
- name: epel
234+
- name: epel-7
235235
arch: ppc64le
236236
type: rpm
237237
url: https://el7.repo.almalinux.org/epel/7/ppc64le/
@@ -797,8 +797,8 @@
797797
data:
798798
mock:
799799
secure_boot_macros:
800-
"%pe_signing_cert": "'f4217b7b99a69128'"
801-
"%pe_signing_token": "'AlmaLinux OS Foundation'"
800+
"%pe_signing_cert": "f4217b7b99a69128"
801+
"%pe_signing_token": "AlmaLinux OS Foundation"
802802
repositories:
803803
- name: almalinux-10-beta
804804
arch: x86_64

reference_data/platforms.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5337,7 +5337,7 @@
53375337
packager: AlmaLinux Packaging Team <[email protected]>
53385338
vendor: AlmaLinux
53395339
mock:
5340-
chroot_setup_cmd: install tar gcc-c++ redhat-rpm-config centos-release which xz sed
5340+
chroot_setup_cmd: install tar gcc-c++ redhat-rpm-config almalinux-release which xz sed
53415341
make bzip2 gzip gcc coreutils unzip shadow-utils diffutils cpio bash gawk rpm-build
53425342
info patch util-linux findutils grep zlib scl-utils scl-utils-build git-core
53435343
dnf_common_opts:

scripts/release_new_errata_records.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ async def release_record(
9999
self,
100100
record_id: str,
101101
):
102-
endpoint = f"errata/release_record/{record_id}/"
102+
endpoint = f"errata/release_new_record/{record_id}/"
103103
request = aiohttp.request(
104104
"post",
105105
urllib.parse.urljoin(self.base_url, endpoint),
@@ -111,7 +111,7 @@ async def bulk_records_release(
111111
self,
112112
records_ids: list,
113113
):
114-
endpoint = "errata/bulk_release_records/"
114+
endpoint = "errata/bulk_release_new_records/"
115115
request = aiohttp.request(
116116
"post",
117117
urllib.parse.urljoin(self.base_url, endpoint),

0 commit comments

Comments
 (0)