Skip to content
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

Bugfix/Claner removing too many artifacts after timeout #490

Merged
merged 6 commits into from
Mar 12, 2019
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ All notable changes to AET will be documented in this file.
- [PR-413](https://github.com/Cognifide/aet/pull/413) Added ability to show full page source when there has been no difference discovered ([#369](https://github.com/Cognifide/aet/issues/369))

- [PR-463](https://github.com/Cognifide/aet/pull/463) Removed dependency to Joda time library
- [PR-490](https://github.com/Cognifide/aet/pull/490) Bugfix/Claner removing to many artifacts
Copy link
Contributor

@tkaik tkaik Mar 11, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you provide some more descriptive text here about what has changed? :) (e.g. timeout handling)


## Version 3.2.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ public void configure() throws Exception {
.aggregate(body().method("getDbKey"), new SuitesAggregationStrategy())
.completionSize(header(SuiteAggregationCounter.NAME_KEY).method("getSuitesToAggregate"))
.completionTimeout(60000L).forceCompletionOnStop()
.discardOnCompletionTimeout()
.to(direct("removeArtifacts"));

from(direct("removeArtifacts"))
Expand Down