Skip to content

Commit

Permalink
send less telemetry (#1200)
Browse files Browse the repository at this point in the history
<!-- ELLIPSIS_HIDDEN -->



> [!IMPORTANT]
> Change update check interval from 1 hour to 6 hours in
`activateClient()` in `index.ts`.
> 
>   - **Behavior**:
> - Change update check interval from 1 hour to 6 hours in
`activateClient()` in `index.ts`.
> 
> <sup>This description was created by </sup>[<img alt="Ellipsis"
src="https://img.shields.io/badge/Ellipsis-blue?color=175173">](https://www.ellipsis.dev?ref=BoundaryML%2Fbaml&utm_source=github&utm_medium=referral)<sup>
for b568c92. It will automatically
update as commits are pushed.</sup>

<!-- ELLIPSIS_HIDDEN -->
  • Loading branch information
aaronvg authored Nov 27, 2024
1 parent 269ad9d commit 7c28757
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ const activateClient = (
console.log(`checking for updates ${new Date().toString()}`)
checkForUpdates({ showIfNoUpdates: false })
},
60 * 60 * 1000 /* 1h in milliseconds: min/hr * secs/min * ms/sec */,
6 * 60 * 60 * 1000 /* 6h in milliseconds: min/hr * secs/min * ms/sec */,
),
)
})
Expand Down

0 comments on commit 7c28757

Please sign in to comment.