mirror of
https://github.com/plashchynski/crono.git
synced 2026-01-13 22:03:27 +01:00
set job each hours at 00/15/30/45 #18
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @marcosomma on GitHub (May 18, 2015).
Hi there,
So I need execute a job each hour, each 15 minutes exactly, independent from the deploy hour.
It's the first time that I use this GEM and it's my first app in Ruby :)
In node.js my code to do this is
I try 2 different approach
1) every hours at : 00/15/30/45
NOT WORK! period should be at least 1 day to use 'at'
2) every days each hours at : 00/15/30/45
NOT WORK! syntax error, unexpected * (SyntaxError)
Any suggestion??
@plashchynski commented on GitHub (May 28, 2015):
@marcosomma Thank you for the report. Now you can setup it as:
@marcosomma commented on GitHub (Jun 3, 2015):
Thanks!