Fix crontab running every 30 seconds instead of every 30 minutes
This commit is contained in:
parent
caa991a259
commit
37ce41a384
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ export class CoreClient extends Client {
|
|||
.then(() => {
|
||||
AppLogger.LogInfo("Client", "App Data Source Initialised");
|
||||
|
||||
const timerId = this._timerHelper.AddTimer("*/30 * * * * *", "Europe/London", GiveCurrency, false);
|
||||
const timerId = this._timerHelper.AddTimer("*/30 * * * *", "Europe/London", GiveCurrency, false);
|
||||
this._timerHelper.StartTimer(timerId);
|
||||
})
|
||||
.catch(err => {
|
||||
|
|
Loading…
Reference in a new issue