Skip to content

Commit

Permalink
update release version (#28)
Browse files Browse the repository at this point in the history
* update release version
Fixes #27

* Update cron expression for data sync service
  • Loading branch information
danishjoseph authored Apr 24, 2024
1 parent e87fbba commit dfe1c02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stockdog",
"version": "0.0.1",
"version": "0.0.2",
"description": "equity insights app using nestjs",
"author": "danisjoseph",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion src/data-sync/data-sync.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class DataSyncService {
) {}
private readonly logger = new Logger(DataSyncService.name);

@Cron(CronExpression.EVERY_DAY_AT_6PM, { timeZone: 'Asia/Kolkata' })
@Cron(CronExpression.EVERY_DAY_AT_7PM, { timeZone: 'Asia/Kolkata' })
async execute() {
const currentDate = getCurrentDate();
this.logger.log(
Expand Down

0 comments on commit dfe1c02

Please sign in to comment.