Skip to content
Snippets Groups Projects
Commit 0b85e1bd authored by Guido Trotter's avatar Guido Trotter
Browse files

qa: fix modify primary test


This test uses a non-existing config value "file-storage-dir" and fails.
Fixing it by using the default value, which is currently what qa does.

Signed-off-by: default avatarGuido Trotter <ultrotter@google.com>
Reviewed-by: default avatarBernardo Dal Seno <bdalseno@google.com>
parent 1012ecf4
No related branches found
No related tags found
No related merge requests found
......@@ -611,7 +611,9 @@ def TestInstanceModifyPrimaryAndBack(instance, currentnode, othernode):
current = currentnode.primary
other = othernode.primary
filestorage = qa_config.get("file-storage-dir")
# FIXME: the qa doesn't have a customizable file storage dir parameter. As
# such for now we use the default.
filestorage = pathutils.DEFAULT_FILE_STORAGE_DIR
disk = os.path.join(filestorage, name)
AssertCommand(["gnt-instance", "modify", "--new-primary=%s" % other, name],
......
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