From eea403aaabd2c4488651bc38c76e33bb430c0e80 Mon Sep 17 00:00:00 2001 From: Victor Sartori Date: Wed, 18 Feb 2026 14:11:51 -0300 Subject: [PATCH] Fix typo error in interface Machine --- maasclient/machine.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maasclient/machine.go b/maasclient/machine.go index d4bcd70..bca1b70 100644 --- a/maasclient/machine.go +++ b/maasclient/machine.go @@ -47,7 +47,7 @@ type Machine interface { IPAddresses() []net.IP State() string OSSystem() string - DeployedAtMemory() bool + DeployedInMemory() bool DistroSeries() string SwapSize() int PowerManagerOn() PowerManagerOn @@ -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 {