Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have defined an email template like this:

version changes:
.....
Unstable:${CHANGES_SINCE_LAST_UNSTABLE,reverse=true}
Trigger reason:${CAUSE}
Test_Counts:${TEST_COUNTS}
Fail_Test_Counts:${TEST_COUNTS,var=fail}
Skip_Test_Counts:${TEST_COUNTS,var="skip"}
......

After each building,the module owner will receive an email like this:

Check console output at http://localhost:8080/hudson-2.2.1/job/test1/52/ to view the results.

Unstable:Changes for Build #52
Trigger reason:Started by user anonymous
Test_Counts:${TEST_COUNTS}
Fail_Test_Counts:${TEST_COUNTS,var=fail}
Skip_Test_Counts:${TEST_COUNTS,var="skip"}

So she/he will know detailed building result,most importantly:if any errors comes up,timely.

Questions:

1,As you can see,${TEST_COUNTS}... didn't get replaced by hudson automatically.why?
2,Does any Email token like: ${ERROR_STACK_INFORMATION} exist to allow be defined in email template to send error stack to module owner? 

By the way,I am using

Hudson 2.2.1
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.