-
Notifications
You must be signed in to change notification settings - Fork 167
Increase rack timeout in development to fix assets locally #5765
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -277,6 +277,7 @@ development: | |
| password_pepper: f22d4b2cafac9066fe2f4416f5b7a32c | ||
| piv_cac_verify_token_secret: ee7f20f44cdc2ba0c6830f70470d1d1d059e1279cdb58134db92b35947b1528ef5525ece5910cf4f2321ab989a618feea12ef95711dbc62b9601e8520a34ee12 | ||
| rails_mailer_previews_enabled: 'true' | ||
| rack_timeout_service_timeout_seconds: 9_999_999_999 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. do we need to add this to
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I figure the problem happened most often in development? But yeah I guess it wouldn't hurt to add to test... will follow up
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| recurring_jobs_disabled_names: "[]" | ||
| s3_report_bucket_prefix: '' | ||
| s3_report_public_bucket_prefix: '' | ||
|
|
||
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 think you want a string here. Also, we can probably make is something more reasonable, like 10 minutes
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.
it's valid YAML! and our config parser just calls
Integer()on it anywaysidentity-idp/lib/identity_config.rb
Lines 18 to 20 in 0f018a5
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.
Ah sweet. There used to be something that yelled at you when you put non string values in here. Maybe that went away with Figaro.
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.
Yeah, it was a Figaro-ism because it also had to be able to write the value to the system environment variable