Merge "Support non-zero domains"

This commit is contained in:
Zuul 2020-02-18 16:36:24 +00:00 committed by Gerrit Code Review
commit a9f46a032c
1 changed files with 2 additions and 2 deletions

View File

@ -813,7 +813,7 @@ def read_func():
#
# sudo /usr/sbin/pmc -u -b 0 'GET PORT_DATA_SET'
#
data = subprocess.check_output([PLUGIN_STATUS_QUERY_EXEC,
data = subprocess.check_output([PLUGIN_STATUS_QUERY_EXEC, '-f', PLUGIN_CONF_FILE,
'-u', '-b', '0', 'GET PORT_DATA_SET'])
port_locked = False
@ -829,7 +829,7 @@ def read_func():
#
# sudo /usr/sbin/pmc -u -b 0 'GET TIME_STATUS_NP'
#
data = subprocess.check_output([PLUGIN_STATUS_QUERY_EXEC,
data = subprocess.check_output([PLUGIN_STATUS_QUERY_EXEC, '-f', PLUGIN_CONF_FILE,
'-u', '-b', '0', 'GET TIME_STATUS_NP'])
got_master_offset = False