-
Notifications
You must be signed in to change notification settings - Fork 56
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
Report timeout fix #60
Conversation
*/ | ||
@Parameter(property = "allure.serve.port", defaultValue = "0") | ||
protected Integer servePort; | ||
@Parameter(property = "allure.report.timeout", defaultValue = "60") |
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.
@Parameter(property = "allure.report.timeout", defaultValue = "60") | |
@Parameter(property = "allure.report.timeout", defaultValue = "600") |
Can I suggest a longer default value? 1 minute is not enough for big reports on Windows machines.
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 know it's to short, that's why this pull was created. This value will be configurable from now, so you would be able to set it to any value you like. 60sec worked here for a long time and from all allure-maven users just two of us starts to complains about that. @baev which default value would be sufficient in your opinion?
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'm ok with one minute timeout by default
* Serve timeout parameter in seconds. | ||
*/ | ||
@Parameter(property = "allure.serve.timeout", defaultValue = "3600") | ||
private String serveTimeout; |
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 like this to be a string as well as new introduced report timeout to be a string
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.
@baev I send the patch on [email protected]
with gh-59-fix-proposition
in email subject.
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.
@baev Could you apply this patch on top of gh-59-fix-proposition
and push it? Patch contain change from String
to int
for timeouts.
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.
@Coder1304 still got no email from you, could you please resend it?
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.
@baev I've send it again to [email protected]
with gh-59-fix-proposition
in the subject. And as a reply for the first mail I send you.
fb8bbcc
to
e8e10de
Compare
Looks good to me. In order to merge this:
|
@baev I realized that I forgot to change private data. Could you change my private data to this:
I would be more than happy if do this. |
4a916c5
to
49470b6
Compare
@Coder1304 done, now all we need is CLA |
@baev Thanks. CLA done. |
@baev I have few questions:
|
|
@eroshenkoam Could you change my data to: |
done) ty for pr 👍 |
I have to prepare the change first. Thanks. |
@eroshenkoam
Tried with ssh and https, same result. |
@Coder1304 see https://help.github.com/articles/creating-a-pull-request/
|
@baev Thanks a lot for this link. |
fixes #59
by @Coder1304