From 06dc5b4438ecd7efb6aab75c83543ea7bfd73df6 Mon Sep 17 00:00:00 2001 From: Iustin Pop <iustin@google.com> Date: Sun, 5 Oct 2008 09:16:03 +0000 Subject: [PATCH] Fix ssconf.GetMasterAndMyself The ssconf migration left this out. Reviwed-by: imsnah,ultrotter --- lib/ssconf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/ssconf.py b/lib/ssconf.py index f9024f1d2..f7bf49c33 100644 --- a/lib/ssconf.py +++ b/lib/ssconf.py @@ -108,9 +108,10 @@ def GetMasterAndMyself(ss=None): """ if ss is None: - ss = SimpleStore() + ss = SimpleConfigReader() return ss.GetMasterNode(), utils.HostInfo().name + def CheckMaster(debug, ss=None): """Checks the node setup. -- GitLab