-
Notifications
You must be signed in to change notification settings - Fork 25
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
[#171703313] SAML certs and Startup IDP metadata from ENV #595
Conversation
Codecov Report
@@ Coverage Diff @@
## master #595 +/- ##
==========================================
+ Coverage 82.7% 82.75% +0.05%
==========================================
Files 48 48
Lines 1376 1386 +10
Branches 241 242 +1
==========================================
+ Hits 1138 1147 +9
- Misses 227 228 +1
Partials 11 11
Continue to review full report at Codecov.
|
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.
lgtm so far
@@ -116,7 +135,8 @@ export const appConfig: IApplicationConfig = { | |||
clientLoginRedirectionUrl: CLIENT_REDIRECTION_URL, | |||
loginPath: "/login", | |||
metadataPath: "/metadata", | |||
sloPath: "/slo" | |||
sloPath: "/slo", | |||
startupIdpsMetadata: STARTUP_IDPS_METADATA |
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.
can you please document this var into th readme ?
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.
Fixed in 53626f2
@@ -170,7 +171,7 @@ export function newApp( | |||
// Setup routes | |||
// | |||
|
|||
return tryCatch(async () => { | |||
return new Task(async () => { |
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.
we must ensure that this code never throws
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.
Are all static methods inside the Task that should never throw. I think that tryCatch
before and new Task
now, are only for chaining purposes with withSpid
.
Co-Authored-By: Danilo Spinelli <gunzip@users.noreply.github.com>
Co-Authored-By: Danilo Spinelli <gunzip@users.noreply.github.com>
No description provided.