Doesn't poll for subversion changes when set to H * * * * or H/1 * * * * but polls fine with * * * * * and H/2 * * * * !?

2014-03-11 Thread karg
I have enabled a Jenkins job to poll for subversion changes every minute (H * * * * or H/1 * * * *). When I check the last poll status, it says last poll was an hour ago! So it does not poll every minute, aparently, using H * * * * or H/1 * * * *! The Jenkins log file does not contain any

Re: Doesn't poll for subversion changes when set to H * * * * or H/1 * * * * but polls fine with * * * * * and H/2 * * * * !?

2014-03-11 Thread Stephen Connolly
AFAIK `H * * * *` means poll once per hour at a random minute in the hour On 11 March 2014 11:25, k...@quipsy.de wrote: I have enabled a Jenkins job to poll for subversion changes every minute (H * * * * or H/1 * * * *). When I check the last poll status, it says last poll was an hour ago!

Re: Doesn't poll for subversion changes when set to H * * * * or H/1 * * * * but polls fine with * * * * * and H/2 * * * * !?

2014-03-11 Thread karg
Understood. But why is H/2 working, while H/1 is not? Am Dienstag, 11. März 2014 12:29:27 UTC+1 schrieb Stephen Connolly: AFAIK `H * * * *` means poll once per hour at a random minute in the hour On 11 March 2014 11:25, ka...@quipsy.de javascript: wrote: I have enabled a Jenkins job to

Re: Doesn't poll for subversion changes when set to H * * * * or H/1 * * * * but polls fine with * * * * * and H/2 * * * * !?

2014-03-11 Thread Stephen Connolly
It's a hacky syntax... H * * * * can only sensibly mean once per hour as if you want every minute you just type * * * * * The /n formats are a different set of logic On 11 March 2014 11:52, k...@quipsy.de wrote: Understood. But why is H/2 working, while H/1 is not? Am Dienstag, 11. März

Re: Doesn't poll for subversion changes when set to H * * * * or H/1 * * * * but polls fine with * * * * * and H/2 * * * * !?

2014-03-11 Thread karg
Actually what I want is once a minute, but not exactly at second number zero, as I have lots of SVN jobs and want to spread these evenly of the current minute. Am Dienstag, 11. März 2014 13:13:17 UTC+1 schrieb Stephen Connolly: It's a hacky syntax... H * * * * can only sensibly mean once

Re: Doesn't poll for subversion changes when set to H * * * * or H/1 * * * * but polls fine with * * * * * and H/2 * * * * !?

2014-03-11 Thread Stephen Connolly
just limit concurrent polling and they'll form a queue On 11 March 2014 12:18, k...@quipsy.de wrote: Actually what I want is once a minute, but not exactly at second number zero, as I have lots of SVN jobs and want to spread these evenly of the current minute. Am Dienstag, 11. März 2014

Re: Doesn't poll for subversion changes when set to H * * * * or H/1 * * * * but polls fine with * * * * * and H/2 * * * * !?

2014-03-11 Thread karg
Sounds interesting. How to do that? Am Dienstag, 11. März 2014 13:25:04 UTC+1 schrieb Stephen Connolly: just limit concurrent polling and they'll form a queue On 11 March 2014 12:18, ka...@quipsy.de javascript: wrote: Actually what I want is once a minute, but not exactly at second number

Re: Doesn't poll for subversion changes when set to H * * * * or H/1 * * * * but polls fine with * * * * * and H/2 * * * * !?

2014-03-11 Thread Stephen Connolly
If you have enough jobs it's an option on the main jenkins configuration page (I forget the exact name or the number of jobs to get the option to display) On 11 March 2014 14:32, k...@quipsy.de wrote: Sounds interesting. How to do that? Am Dienstag, 11. März 2014 13:25:04 UTC+1 schrieb

RE: Doesn't poll for subversion changes when set to H * * * * or H/1 * * * * but polls fine with * * * * * and H/2 * * * * !?

2014-03-11 Thread James Nord (jnord)
Obligatory link to polling is evil. http://kohsuke.org/2011/12/01/polling-must-die-triggering-jenkins-builds-from-a-git-hook/ /James From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Stephen Connolly Sent: 11 March 2014 14:36 To:

Re: Doesn't poll for subversion changes when set to H * * * * or H/1 * * * * but polls fine with * * * * * and H/2 * * * * !?

2014-03-11 Thread karg
Found it! Thank you for that tip. :-) Am Dienstag, 11. März 2014 15:35:55 UTC+1 schrieb Stephen Connolly: If you have enough jobs it's an option on the main jenkins configuration page (I forget the exact name or the number of jobs to get the option to display) On 11 March 2014 14:32,