-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Due to an inconsistent behavior of the OBS API, multibuild variants are listed in the package results. #72
Comments
boiko
added a commit
to boiko/osc-tiny
that referenced
this issue
Aug 9, 2022
This is to workaround an inconsistent behavion on projects that have multibuild- enabled packages. Closes SUSE#72
I had reported this already two years ago: openSUSE/open-build-service#9715 😂 |
Given the discussion in this original issue, I would not object to a work around in |
crazyscientist
added a commit
that referenced
this issue
Aug 12, 2022
The build service has a rather specific interpretation of boolean parameters: They are flags (i.e. without value) instead of params with explicit values. This change explicitly tries to not send values for boolean params in order to avoid confusing API responses. (see e.g. openSUSE/open-build-service#9715)
crazyscientist
added a commit
that referenced
this issue
Aug 16, 2022
While the IBS API has explicit boolean parameters, it also has parameters, which pretend to be boolean, but are not. In order to keep client working and shield them from this madness this is a workaround to the existing workaround (#77).
crazyscientist
added a commit
that referenced
this issue
Aug 16, 2022
While the IBS API has explicit boolean parameters, it also has parameters, which pretend to be boolean, but are not. In order to keep client working and shield them from this madness this is a workaround to the existing workaround (#77).
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Due to a bug in the OBS API endpoint (reported here: openSUSE/open-build-service#12925) when explicitly passing
deleted=0
in the/sources/<proj>
endpoint, the multibuild versions of packages are listed in the results, see this example:Now if I append
deleted=0
to the arguments, the API endpoint lists also multibuild variants:Until this gets fixed upstream, it would be nice if osc-tiny could omit the
deleted=0
from the API request.The text was updated successfully, but these errors were encountered: