Skip to content

Commit

Permalink
chore: fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
claustres committed Jan 3, 2023
1 parent ede1255 commit 7a666d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jobfile-observations.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const outputDir = './output'
// Configuration
const dbUrl = process.env.DB_URL || 'mongodb://127.0.0.1:27017/hubeau'
const ttl = parseInt(process.env.TTL) || (7 * 24 * 60 * 60) // duration in seconds
const history = parseInt(process.env.HISTORY) || (1 * 14 * 60 * 60 * 1000) // duration in miliseconds
const history = parseInt(process.env.HISTORY) || (1 * 24 * 60 * 60 * 1000) // duration in miliseconds
const timeout = parseInt(process.env.TIMEOUT) || (30 * 60 * 1000) // duration in miliseconds

let stations = null
Expand Down

0 comments on commit 7a666d4

Please sign in to comment.