storage: remove unused method

This commit is contained in:
Brian Warner 2008-06-17 11:36:32 -07:00
parent 2154b5751b
commit b62b3974d3
1 changed files with 0 additions and 10 deletions

View File

@ -965,16 +965,6 @@ class StorageServer(service.MultiService, Referenceable):
# Commonly caused by there being no buckets at all.
pass
def _get_incoming_shares(self, storage_index):
incomingdir = os.path.join(self.incomingdir, storage_index_to_dir(storage_index))
try:
for f in os.listdir(incomingdir):
if NUM_RE.match(f):
filename = os.path.join(incomingdir, f)
yield (int(f), filename)
except OSError:
pass
def remote_get_buckets(self, storage_index):
start = time.time()
self.count("get")