Skip to content
Snippets Groups Projects
Commit 54878c54 authored by Michael Hanselmann's avatar Michael Hanselmann
Browse files

storage: Fix semantics for directory size


The actual directory size is "used" space, not the total space on
the filesystem.

Signed-off-by: default avatarMichael Hanselmann <hansmi@google.com>
Reviewed-by: default avatarIustin Pop <iustin@google.com>
parent 17cb7017
No related branches found
No related tags found
No related merge requests found
...@@ -102,7 +102,7 @@ class FileStorage(_Base): ...@@ -102,7 +102,7 @@ class FileStorage(_Base):
values = [] values = []
# Pre-calculate information in case it's requested more than once # Pre-calculate information in case it's requested more than once
if COL_SIZE in fields: if COL_USED in fields:
dirsize = utils.CalculateDirectorySize(path) dirsize = utils.CalculateDirectorySize(path)
else: else:
dirsize = None dirsize = None
...@@ -116,7 +116,7 @@ class FileStorage(_Base): ...@@ -116,7 +116,7 @@ class FileStorage(_Base):
if field_name == COL_NAME: if field_name == COL_NAME:
values.append(path) values.append(path)
elif field_name == COL_SIZE: elif field_name == COL_USED:
values.append(dirsize) values.append(dirsize)
elif field_name == COL_FREE: elif field_name == COL_FREE:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment