tools: drop requirement for module_platform_id from request
The PLATFORM_ID got retired from fedora-43 [0] and it seems like it was always kinda optional. So lets make it optional for real to avoid failing to build fedora-43 images. [0] https://fedoraproject.org/wiki/Changes/Drop_PLATFORM_ID
This commit is contained in:
parent
59fe07a6ab
commit
549136b1b0
3 changed files with 6 additions and 10 deletions
|
|
@ -141,12 +141,6 @@ def validate_request(request):
|
|||
"reason": "no 'arch' specified"
|
||||
}
|
||||
|
||||
if not request.get("module_platform_id"):
|
||||
return {
|
||||
"kind": "InvalidRequest",
|
||||
"reason": "no 'module_platform_id' specified"
|
||||
}
|
||||
|
||||
if not request.get("releasever"):
|
||||
return {
|
||||
"kind": "InvalidRequest",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue