-
Notifications
You must be signed in to change notification settings - Fork 240
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
Fix flaky CT submission bug #1085
Merged
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
77eebe4
Create additional conditions to determine log results and if a log sh…
7c2d24f
modify chromeLike unit test to better fit the actual use case and ref…
1d0f011
update changelog
0288f6d
Remove MaxSubmissions and set maxSubmissionsPerGroup from the minGrou…
00ecea7
Set max submissions per operator in ctpolicy package
d2cadff
Removed to reduce complexity and confusion.
8f78848
Resolving comments
3778098
Use MinDistinctOperators instead of MaxSubmissionsPerOperator to redu…
965f82a
Add zOS build support (#1088)
onlywork1984 d0ff25e
Add support for WASI port (#1089)
flavio 19e8688
update changelog
e354fa0
fix changelog merge issues
87ae61d
My merge conflict mishap reverted the change to have groups be a map[…
cbc995c
replace groupNeeds with minSubmissions and change the name of groups …
9b97936
change minSubmissions since it gets changed after initialization
5ddf7bf
Change dayDuration to use time.Hour for easier understanding
4c98b10
Resolve comments
88cfb78
add comments to clarify reservedSubmissions
4de8fb7
Merge branch 'google:master' into ct
breadyzhang File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
This branch is only executed if
sub.results[logURL].sct == nil
, i.e if the SCT was not matched to a groupName above. Is this even something that we want to allow?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.
sub.results[logURL].sct == nil
means a previous SCT has been set in sub.results from the same log operator (the sct gets set to nil insub.request(...)
). This branch is used for the situation where an SCT from an already submitted log operator can be used in the results.