Dan Kenigsberg has uploaded a new change for review.

Change subject: drop unused checkPathStat
......................................................................

drop unused checkPathStat

We actually have two copies of this junk DNA. Trim it.

Change-Id: I6d3017b2cc13134253284248258879c6140d26de
Signed-off-by: Dan Kenigsberg <dan...@redhat.com>
---
M lib/vdsm/utils.py
M vdsm/sampling.py
2 files changed, 0 insertions(+), 20 deletions(-)


  git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/73/20673/1

diff --git a/lib/vdsm/utils.py b/lib/vdsm/utils.py
index 7310529..7551d0a 100644
--- a/lib/vdsm/utils.py
+++ b/lib/vdsm/utils.py
@@ -559,16 +559,6 @@
     return (proc.returncode, out, err)
 
 
-def checkPathStat(pathToCheck):
-    try:
-        startTime = time.time()
-        os.statvfs(pathToCheck)
-        delay = time.time() - startTime
-        return (True, delay)
-    except:
-        return (False, 0)
-
-
 class ImagePathStatus(threading.Thread):
     def __init__(self, cif, interval=None):
         if interval is None:
diff --git a/vdsm/sampling.py b/vdsm/sampling.py
index 2849e75..851034d 100644
--- a/vdsm/sampling.py
+++ b/vdsm/sampling.py
@@ -541,16 +541,6 @@
         return stats
 
 
-def checkPathStat(pathToCheck):
-    try:
-        startTime = time.time()
-        os.statvfs(pathToCheck)
-        delay = time.time() - startTime
-        return (True, delay)
-    except:
-        return (False, 0)
-
-
 class ImagePathStatus(threading.Thread):
     def __init__(self, cif, interval=None):
         if interval is None:


-- 
To view, visit http://gerrit.ovirt.org/20673
To unsubscribe, visit http://gerrit.ovirt.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I6d3017b2cc13134253284248258879c6140d26de
Gerrit-PatchSet: 1
Gerrit-Project: vdsm
Gerrit-Branch: master
Gerrit-Owner: Dan Kenigsberg <dan...@redhat.com>
_______________________________________________
vdsm-patches mailing list
vdsm-patches@lists.fedorahosted.org
https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches

Reply via email to