|
||||||||
|
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/groups/opt_out.

On further investigation, the commit message is the issue:
I am using git-tf to send from my git repo to tfs. I had --metadata set to true. This converts your git commit messages like "blah" to something like:
"Commit abcdef (Tue May 21 14:19:15 2013 +1000)
Author: David Clark <david.clark@[redacted].com>
Committer: David Clark <david.clark@[redacted].com>
-----------------------------------------------------------------
blah
"
Which is causing the parse error in the polling. (Due to "---" it seems).
BTW: for anyone with a repo in this state you can fix it by:
1. git tf configure --no-metadata
2. push a change OR using team explorer, edit the last change set comment to not contain "---"