Skip to content

Commit

Permalink
Fix code style issue
Browse files Browse the repository at this point in the history
  • Loading branch information
alco committed Dec 16, 2024
1 parent 7ab8ae0 commit 93d4588
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion examples/linearlite/db/load_data.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ if (!process.env.DATABASE_URL) {

const DATABASE_URL = process.env.DATABASE_URL
const ISSUES_TO_LOAD = process.env.ISSUES_TO_LOAD || 512
const TX_BATCH_SIZE = process.env.TX_BATCH_SIZE ? Number(process.env.TX_BATCH_SIZE) : 10000
const TX_BATCH_SIZE = process.env.TX_BATCH_SIZE
? Number(process.env.TX_BATCH_SIZE)
: 10000
const BATCH_SIZE = 1000
const issues = generateIssues(ISSUES_TO_LOAD)

Expand Down

0 comments on commit 93d4588

Please sign in to comment.