Shu Ming has uploaded a new change for review. Change subject: Make connections path depend on path definitions ......................................................................
Make connections path depend on path definitions The connections path should be relative to the path definition in constants.py Change-Id: I142d707c5e27914835a4054bf4966b7f5dc70e75 Signed-off-by: Shu Ming <[email protected]> --- M vdsm/storage/hsm.py 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/44/7944/1 diff --git a/vdsm/storage/hsm.py b/vdsm/storage/hsm.py index 1e9311b..1996020 100644 --- a/vdsm/storage/hsm.py +++ b/vdsm/storage/hsm.py @@ -83,7 +83,7 @@ # FIXME: moved from spm.py but this should be somewhere else SECTOR_SIZE = 512 -STORAGE_CONNECTION_DIR = "/var/run/vdsm/connections/" +STORAGE_CONNECTION_DIR = os.path.join(constants.P_VDSM_RUN, "connections/") def public(f=None, **kwargs): if f is None: -- To view, visit http://gerrit.ovirt.org/7944 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I142d707c5e27914835a4054bf4966b7f5dc70e75 Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Shu Ming <[email protected]> _______________________________________________ vdsm-patches mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches
