Skip to content

Commit

Permalink
Bring back the MAX_N_FILES env var (accidentally deleted)
Browse files Browse the repository at this point in the history
  • Loading branch information
gskorokhod committed Nov 17, 2023
1 parent f74841a commit 0dd4801
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/essence-feature-usage-stats/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
CONJURE_DIR = Path(os.getenv("CONJURE_DIR"))
OUTPUT_PATH = Path(os.getenv("OUTPUT_PATH"))
CONJURE_REPO = os.getenv("CONJURE_REPO")
MAX_N_FILES = int(os.getenv("MAX_N_FILES", "200"))
MAX_N_FILES = int(os.getenv("MAX_N_FILES", "500"))
MAX_N_KEYWORDS = int(os.getenv("MAX_N_KEYWORDS", "200"))
CONJURE_VERSION = os.getenv("CONJURE_VERSION", "latest")

Expand All @@ -45,6 +45,7 @@
conjure_version=CONJURE_VERSION,
blocklist=KEYWORD_BLOCKLIST,
exclude_regex=EXCLUDE_REGEX,
max_n_files=MAX_N_FILES,
)

write_csv(stats, "web/static/data.csv")
Expand Down

0 comments on commit 0dd4801

Please sign in to comment.