Skip to content

Commit

Permalink
Update CHANGELOGg
Browse files Browse the repository at this point in the history
  • Loading branch information
ingalls committed Dec 19, 2024
1 parent 40cd082 commit ea89510
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@

## Version History

### v1.6.2

- :bug: Fix a couple of build bugs

### v1.6.1

- :rocket: Last stopped can be a boolean
Expand Down
2 changes: 1 addition & 1 deletion task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export default class Task extends ETL {


if (
stream.lastStopped
typeof stream.lastStopped === 'number'
&& stream.lastStopped > stream.lastStarted
&& stream.lastStopped * 1000 < (now - 600000) // now - 10min (ms)
) continue;
Expand Down

0 comments on commit ea89510

Please sign in to comment.