Skip to content

Commit

Permalink
馃攺
Browse files Browse the repository at this point in the history
  • Loading branch information
transitive-bullshit committed Oct 24, 2023
1 parent 9afda66 commit 77f8966
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/inngest/populate-tmdb-movie-data-dump.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const populateTMDBMovieDataDump = inngest.createFunction(
.filter((dumpedMovie) => !dumpedMovie.adult)
// sort input movies by popularity so we process more popular movies first
.sort((a, b) => (b.popularity || 0) - (a.popularity || 0))
.slice(0, 32) // for testing
.slice(0, 24) // for testing

logger.info('downloaded', rawDumpedMovies.length, 'movies')
logger.info('processing', dumpedMovies.length, 'movies')
Expand Down

0 comments on commit 77f8966

Please sign in to comment.