We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Issue in knife-brightbox rubiojr/knife-brightbox#21
knife-brightbox
This could be solved by having a cleaning interface on Server that respects Demeter's law and avoids the chaining.
Server
server.image.name was used but when an image has been later set to "private", server#image returns nil.
server.image.name
server#image
nil
If server#image_name was available based on the data already in the original API call, a second API call would not be needed.
server#image_name
Need to ensure that these also appear in the collection API so they consistently work in both cases.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Issue in
knife-brightbox
rubiojr/knife-brightbox#21This could be solved by having a cleaning interface on
Server
that respectsDemeter's law and avoids the chaining.
server.image.name
was used but when an image has been later set to"private",
server#image
returnsnil
.If
server#image_name
was available based on the data already in the originalAPI call, a second API call would not be needed.
Need to ensure that these also appear in the collection API so they consistently
work in both cases.
The text was updated successfully, but these errors were encountered: