Skip to content
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
4 changes: 2 additions & 2 deletions maasclient/machine.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ type Machine interface {
IPAddresses() []net.IP
State() string
OSSystem() string
DeployedAtMemory() bool
DeployedInMemory() bool
DistroSeries() string
SwapSize() int
PowerManagerOn() PowerManagerOn
Expand Down Expand Up @@ -445,7 +445,7 @@ func (m *machine) DistroSeries() string {
return m.distroSeries
}

func (m *machine) DeployedAtMemory() bool {
func (m *machine) DeployedInMemory() bool {
return m.ephemeralDeploy
}
func (m *machine) SwapSize() int {
Expand Down