Skip to content

Commit

Permalink
Merge pull request #65 from ceilican/master
Browse files Browse the repository at this point in the history
Fix "CronOnlyBusinessHours" Example
  • Loading branch information
enragedginger committed Oct 18, 2017
2 parents fe1235d + 9120612 commit 674a0fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -358,9 +358,9 @@ used to specify what times a job *cannot* run in (the opposite of a Cron Schedul
An example Calendar, which specifies an exclusion set of `00:00 - 07:59` and `18:00 - 23:59` (thereby only allowing jobs to run from `08:00 - 17:59`):

```
CronOnlyBusinessHours {
OnlyBusinessHours {
type = Cron
excludeExpression = "* * 0-7,18-23 ? *"
excludeExpression = "* * 0-7,18-23 ? * *"
}
```

0 comments on commit 674a0fc

Please sign in to comment.