0

Simple simple question, i need to run a job all the day (pooling our SVN repositories) but not from 15.00 to 16.00..

For now my configuration does not work.. job ran at 15.36! :(

Here you can see my cron expression

As you can see my cron expression is H/30 0-15,16-23 * * * What is the problem? is the cron expression that does not work, or is there something i don't get?

gareth_bowles
  • 20,760
  • 5
  • 52
  • 82
ivoruJavaBoy
  • 1,307
  • 2
  • 19
  • 39

1 Answers1

1

@RemcoGerlich is correct, "0-15,16-23" in the hour specifier is the same as saying "0-23". You need "0-14,16-23".

gareth_bowles
  • 20,760
  • 5
  • 52
  • 82