-
Notifications
You must be signed in to change notification settings - Fork 292
Fix release info for domain_type fields #3488
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
Conversation
Signed-off-by: Rob Hoes <rob.hoes@citrix.com>
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.
Does this affect only the generated docs?
field ~qualifier:StaticRO ~ty:domain_type ~lifecycle:[Published, rel_jura, ""] ~default_value:(Some (VEnum "unspecified")) "domain_type" "The type of domain that will be created when the VM is started"; | ||
field ~qualifier:StaticRO ~ty:domain_type | ||
~lifecycle:[ | ||
Prototyped, rel_jura, "Internal-only field; not yet in the public API"; |
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.
in datamodel.ml
this field is Published
, this one is Prototyped
. Is that intended?
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.
I did it this way, because the VM.domain_type
field was part of the datamodel in jura, but it was marked as internal_only
, and therefore not visible in the external API. Therefore, "published" in kolkata. The VM_metrics.current_domain_type
was also includes in jura, but not internal_only
, and I had therefore marked it as "published" in jura already (I wanted to also make this field internal, but somehow the datamodel didn't allow this).
However, even VM_metrics.current_domain_type
wasn't actually useful in jura, because we never set it to anything other than unspecified
. Perhaps it is better to call it "prototyped" as well for this reason.
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.
Submitted a fixup for this.
Yes, this is just for the docs. |
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.
Thanks, LGTM
Signed-off-by: Rob Hoes rob.hoes@citrix.com