Revert "fix: start cron in new coroutine"

This reverts commit 08e034b1
This commit is contained in:
Derrick Hammer 2024-01-20 12:18:43 -05:00
parent 3a74e75a57
commit 7d80efb278
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 3 deletions

View File

@ -46,9 +46,7 @@ func (c *CronServiceImpl) Start() error {
}
}
go func() {
c.scheduler.Start()
}()
go c.scheduler.Start()
return nil
}