Skip to content
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

Deprecate callers to Address in Host #14138

Merged
merged 1 commit into from
Mar 6, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions app/models/host.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ class Host < ApplicationRecord
include SupportsFeatureMixin
include NewWithTypeStiMixin
include TenantIdentityMixin
include DeprecationMixin

VENDOR_TYPES = {
# DB Displayed
Expand Down Expand Up @@ -92,10 +93,9 @@ class Host < ApplicationRecord

serialize :settings, Hash

# TODO: Remove all callers of address
alias_attribute :address, :hostname
alias_attribute :state, :power_state
alias_attribute :to_s, :name
deprecate_attribute :address, :hostname
alias_attribute :state, :power_state
alias_attribute :to_s, :name

include SerializedEmsRefObjMixin
include ProviderObjectMixin
Expand Down