Show More
@@ -331,21 +331,25 b' class FanoutCache:' | |||||
331 | key_file_path = os.path.join(shard._directory, key_file) |
|
331 | key_file_path = os.path.join(shard._directory, key_file) | |
332 | with open(key_file_path, 'rb') as f: |
|
332 | with open(key_file_path, 'rb') as f: | |
333 | metadata = json.loads(f.read()) |
|
333 | metadata = json.loads(f.read()) | |
334 | # in case we don't have size re-calc it... |
|
334 | ||
335 |
|
|
335 | size = metadata.get('size') | |
336 |
|
|
336 | filename = metadata.get('filename') | |
337 | size = os.stat(fn).st_size |
|
337 | full_path = metadata.get('full_path') | |
|
338 | ||||
|
339 | if not size: | |||
|
340 | # in case we don't have size re-calc it... | |||
|
341 | size = os.stat(full_path).st_size | |||
338 |
|
342 | |||
339 | data.append([ |
|
343 | data.append([ | |
340 | cnt, |
|
344 | cnt, | |
341 | key_file, |
|
345 | key_file, | |
342 | key_file_path, |
|
346 | key_file_path, | |
343 |
|
|
347 | filename, | |
344 |
|
|
348 | full_path, | |
345 | metadata.get('store_time', 0), |
|
349 | metadata.get('store_time', 0), | |
346 | metadata.get('access_time', 0), |
|
350 | metadata.get('access_time', 0), | |
347 | metadata.get('access_count', 0), |
|
351 | metadata.get('access_count', 0), | |
348 |
|
|
352 | size, | |
349 | ]) |
|
353 | ]) | |
350 | cnt += 1 |
|
354 | cnt += 1 | |
351 |
|
355 |
General Comments 0
You need to be logged in to leave comments.
Login now