-
Notifications
You must be signed in to change notification settings - Fork 77
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
Add domain support #673
Add domain support #673
Conversation
80e4255
to
3355dad
Compare
2ca2677
to
97519bf
Compare
@@ -1,4 +1,4 @@ | |||
pulpcore>=3.49.0,<3.55 | |||
pulpcore>=3.49.0,<3.70.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's a bit dangerous and I think we haven't yet officially decided to go with 3.70.
Given the bindings discussion, we might actually discuss a shorter window this time.
class UploadView(ViewSet, PackageUploadMixin): | ||
class UploadView(PackageUploadMixin, ViewSet): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks like an unrelated change. Is it where the 200 -> 202 in the tests come from?
Are these unrelated bugfixes?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is me fixing the inheritance of the classes the to be in the correct order. The 200 -> 202 change comes from using the pulpcore OperationPostponedResponse
instead of a normal response. It seems that twine doesn't mind whether it receives a 200 or 202.
@@ -10,3 +10,4 @@ class PulpPythonPluginAppConfig(PulpPluginAppConfig): | |||
label = "python" | |||
version = "3.12.0.dev" | |||
python_package_name = "pulp-python" | |||
domain_compatible = True |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey, yeah!
308aa94
to
128434b
Compare
fixes: pulp#668
fixes: #668
RBAC support is also coming, but this was getting big so I am going to break it up into two PRs to hopefully make reviewing easier.
TODO:- [x] Fix failing tests- [x] Add docs