From 4f8583cc4cb7a7f55a14943dbcbdd9325b702a8c Mon Sep 17 00:00:00 2001 From: harigowtham Date: Thu, 14 Jun 2018 01:49:34 -0400 Subject: Quota : Validate limit on deep directories The below operations are performed on various types of volumes and mount. * Enable Quota * Create 10 directories one inside the other and set limit of 1GB on each directory * Perform a quota list operation * Create some random amount of data inside each directory * Perform a quota list operation * Remove the quota limit and delete the data Change-Id: I2a706eba5c23909e2e6996f485b3f4ead9d5dbca Signed-off-by: harigowtham --- glustolibs-gluster/glustolibs/gluster/quota_libs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'glustolibs-gluster/glustolibs') diff --git a/glustolibs-gluster/glustolibs/gluster/quota_libs.py b/glustolibs-gluster/glustolibs/gluster/quota_libs.py index 805db7811..6cb770167 100644 --- a/glustolibs-gluster/glustolibs/gluster/quota_libs.py +++ b/glustolibs-gluster/glustolibs/gluster/quota_libs.py @@ -48,7 +48,7 @@ def quota_validate(mnode, volname, path, **kwargs): quotalist = quota_fetch_list(mnode, volname, path) if path not in quotalist: - g.log.error("Path not found (script issue)") + g.log.error("Path not found (script issue) path: %s", path) return False else: listinfo = quotalist[path] -- cgit