Skip to content
Snippets Groups Projects
Commit 2859b87b authored by Michael Hanselmann's avatar Michael Hanselmann
Browse files

Convert ganeti-watcher

Use RPC calls instead of ssconf.

Reviewed-by: iustinp
parent 8594f271
No related merge requests found
......@@ -36,7 +36,6 @@ from optparse import OptionParser
from ganeti import utils
from ganeti import constants
from ganeti import serializer
from ganeti import ssconf
from ganeti import errors
from ganeti import opcodes
from ganeti import logger
......@@ -282,8 +281,7 @@ class Watcher(object):
"""
def __init__(self):
sstore = ssconf.SimpleStore()
master = sstore.GetMasterNode()
master = client.QueryConfigValues(["master_node"])[0]
if master != utils.HostInfo().name:
raise NotMasterError("This is not the master node")
self.instances = GetInstanceList()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment