|
||||||||
|
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators. For more information on JIRA, see: http://www.atlassian.com/software/jira |
||||||||
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
For more options, visit https://groups.google.com/d/optout.

I am having the same issue, cvs client detects changes when running the rlog command in the polling log but the plugin does not detect changes.
$ cvs version
Client: Concurrent Versions System (CVSNT) 2.0.51d (client/server)
Server: Concurrent Versions System (CVSNT) 2.5.04 (Zen) Build 3236 () (client/server)
Plugin version 2.11
I grabbed packet captures for the client and plugin both "executing" $cvs rlog -S -d06 Jun 2014 09:38:38 +1000<06 Jun 2014 15:45:18 +1000 my_module
The relevant parts of the captures are
Client
...
Argument -d
Argument 5 Jun 2014 23:38:38 -0000<6 Jun 2014 05:45:18 -0000
Argument -S
Argument –
Argument my_module
rlog
...
M date: 2014/06/05 23:40:44; author: me; state: Exp; lines: +1 -1; kopt: kv; commitid: 12205390fffb0963; filename: my_file;
...
Plugin
...
Argument -S
Argument -d06 Jun 2014 09:38:38 +1000<06 Jun 2014 15:45:18 +1000
Argument my_module
rlog
...
"no changes reported"
I then hacked AbstractCvs.java to set the DATE_FORMATTER timezone to "GMT" in getRemoteLogForModule(). This change fixed the plugin for me and it now correctly detect changes in the repository.