Skip to content

Commit

Permalink
Merge pull request #31 from dataforgoodfr:introduce-batch-size
Browse files Browse the repository at this point in the history
Fix leftover issue in config
  • Loading branch information
kaaloo authored Apr 19, 2024
2 parents 850d496 + 6b96be0 commit b19e11d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion observatoire/tmdb/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

TMDB_API_KEY = os.getenv("TMDB_API_KEY")
TMDB_MAX_RETRIES = int(os.getenv("TMDB_MAX_RETRIES", "500"))
TMDB_BATCH_SIZE = int(os.getenv("BATCH_SIZE", "1000"))
TMDB_BATCH_SIZE = int(os.getenv("TMDB_BATCH_SIZE", "1000"))

0 comments on commit b19e11d

Please sign in to comment.