-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Features/fitnesse plugin fix fitnesse server start #13
Features/fitnesse plugin fix fitnesse server start #13
Conversation
+ remove reset step, write directly in logger
plugins » fitnesse-plugin #19 SUCCESS |
Thank you for a pull request! Please check this document for how the Jenkins project handles pull requests |
Organise imports
plugins » fitnesse-plugin #20 SUCCESS |
@@ -29,63 +29,63 @@ | |||
*/ | |||
public class FitnesseExecutor { | |||
private static final int SLEEP_MILLIS = 1000; | |||
private static final int STARTUP_TIMEOUT_MILLIS = 10*1000; | |||
private static final int ADDITIONAL_TIMEOUT_MILLIS = 20*1000; | |||
private static final int STARTUP_TIMEOUT_MILLIS = 30 * 1000; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: what happened to the indentation here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
:), I don't know... I will push this soon.
I apologize my review can't be more substantive as I am currently pressed for time. I hope to be able to do a more in depth review of the pull request in the coming days. I do have two suggestions for you in general:
In any event, thank you very much for your contribution. I hope to be able to merge it soon. |
Thanks for advice. Next time, I will remove auto format in my IDE and try to not reformat code which not concerns the pull request. |
plugins » fitnesse-plugin #21 SUCCESS |
plugins » fitnesse-plugin #22 SUCCESS |
plugins » fitnesse-plugin #23 SUCCESS |
…FixFitnesseServerStart Features/fitnesse plugin fix fitnesse server start, use HTTP GET instead of scraping stdout.
This plugin looks at standard outuput to know if Fitnesse server is started.
Last version of Fitnesse doesn't write on stdout when the server start.
(since unclebob/fitnesse@91e93be - commit date: 13 nov 2013 - impacted version 20140201 & 20140418)
I've replaced this check by verify the target Fitnesse URL (do a HTTP GET on it).