Skip to content

Commit

Permalink
limit_rows = 50
Browse files Browse the repository at this point in the history
  • Loading branch information
martinheppner committed Nov 3, 2024
1 parent 25a9ad2 commit 5349aa8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jobs/sync.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export async function fixTours(){
AND tour.full_text=temp_tour_full_text.full_text;`);

let rounds = 0;
let limit_rows = 5;
let limit_rows = 50;
try {
let count_query = knex.raw(`SELECT COUNT(*) AS row_count FROM tour WHERE ai_search_column IS NULL;`);
let sql_count_call = await count_query;
Expand Down

0 comments on commit 5349aa8

Please sign in to comment.