feat: add whitelist character support in repo toml #29

Merged
张泊明518370910136 merged 6 commits from feat_repo-healthcheck-whitelist-char into master 2026-04-22 17:06:55 +08:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 51392cc156 - Show all commits

View File

@ -131,7 +131,7 @@ def get_health_check_args(repo_conf: repo.Config) -> List[str]:
]
if repo_conf.health_check.whitelisted_chars:
args.append(
f"-whitelisted-chars={','.join(repo_conf.health_check.whitelisted_chars)}"
f"-whitelistedChars={','.join(repo_conf.health_check.whitelisted_chars)}"
)
args.extend(
[

View File

@ -59,7 +59,7 @@
"/usr/local/bin/repo-health-checker",
"-root=.",
"-repoSize=10.0",
"-whitelisted-chars=你,好,",
"-whitelistedChars=你,好,",
"-checkFileSumList=",
"-checkFileNameList="
]