Skip to content

Commit 1f94e7a

Browse files
Merge pull request #278 from frappe/mergify/bp/master/pr-277
fix(storage): Breakdown correction (backport #277)
2 parents fcada2d + a537f42 commit 1f94e7a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

agent/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,7 @@ def update_agent_cli( # noqa: C901
649649

650650
@staticmethod
651651
def run_ncdu_command(path: str, excludes: list | None = None) -> str | None:
652-
cmd = ["ncdu", path, "-o", "/dev/stdout"]
652+
cmd = ["ncdu", path, "-x", "-o", "/dev/stdout"]
653653
if excludes:
654654
for item in excludes:
655655
cmd.extend(["--exclude", item])

0 commit comments

Comments
 (0)