-
Notifications
You must be signed in to change notification settings - Fork 10
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
feat: handle many cert requests #55
Conversation
287405e
to
ba8c702
Compare
Maybe this should change the version to 0.2.0, since it's an api-breaking change? |
ba8c702
to
84ca46c
Compare
139d2c8
to
5942ce1
Compare
5942ce1
to
a14fcb8
Compare
|
Should this be moved to the top of let now = SystemTime::now();
let end = now + Duration::from_secs(60 * 60 * 24 * 28);
let validity = Validity {
not_before: Time::try_from(now).or(Err(ISE))?,
not_after: Time::try_from(end).or(Err(ISE))?,
}; |
8bca698
to
4957743
Compare
@npmccallum added a unit test to make sure |
79b80eb
to
3e20c75
Compare
Co-authored-by: Roman Volosatovs <[email protected]> Co-authored-by: Nathaniel McCallum <[email protected]> Signed-off-by: Richard Zak <[email protected]>
3e20c75
to
e7840a4
Compare
I missed this. |
0685b67
to
f9fcc2b
Compare
- Remove redundant clones - Clean-up error handling and setup logging to debug level as part of it - Reorganize `use` statements according to Enarx guidelines Signed-off-by: Roman Volosatovs <[email protected]>
f9fcc2b
to
9d97f71
Compare
Signed-off-by: Richard Zak [email protected]