Skip to content

Conversation

@agoose77
Copy link
Contributor

This fixes a "bug", as presently we find these directories during project reconciliation, but do not list hidden files in the quota reconciliation.

Comment on lines -102 to -115
def parse_projids(path):
"""
Parse a projids file, returning mapping of paths to project IDs
"""
projects = {}
if os.path.exists(path):
with open(path) as f:
for line in f:
if line.strip().startswith("#"):
continue
splits = line.split(":", 2)
projects[splits[0]] = int(splits[1])
return projects

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just move this, whilst we're at it.

@yuvipanda yuvipanda requested a review from sunu October 28, 2025 22:57
Copy link
Member

@GeorgianaElena GeorgianaElena left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks good to me @agoose77! I was a bit conflicted because after a quick browse, I thought this was about the hidden files in a home dir and not about the hidden files in the actual share, so at the level of homedirs.
The latter makes sense! Ty 🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants