Added doc on how to fix OpenSSL error in tests#7925
Merged
Conversation
[skip changelog]
c59845c to
1195e27
Compare
soniaconnolly
approved these changes
Mar 3, 2023
Contributor
soniaconnolly
left a comment
There was a problem hiding this comment.
Bunch of editorial suggestions, overall looks great and thanks for putting this together!
docs/FixingOpenSSLVersionProblem.md
Outdated
| @@ -0,0 +1,57 @@ | |||
| # This document describes a recurrent problem with OpenSSL and some of our tests | |||
| The problem appears to manifests when Ruby was built and linked against | |||
Contributor
There was a problem hiding this comment.
Suggested change
| The problem appears to manifests when Ruby was built and linked against | |
| The problem arises when Ruby was built and linked against |
docs/FixingOpenSSLVersionProblem.md
Outdated
| And re-install, using the correct OpenSSL installation: | ||
| `RUBY_CONFIGURE_OPTS="--with-openssl-dir=$(brew --prefix openssl@1.1)" asdf install ruby 3.2.0` | ||
|
|
||
| ## Rebuilding Ruby using ruby-build |
Contributor
There was a problem hiding this comment.
Suggested change
| ## Rebuilding Ruby using ruby-build | |
| ## Rebuilding Ruby using ruby-build (all other version managers) |
Co-authored-by: Sonia Connolly <sonia.connolly@gsa.gov>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
We found a procedure which fixes an occasional problem in our test suite. Sometimes, for no obvious reason, a developer's machine will start throwing this error:
on the test file
spec/features/openid_connect/openid_connect_spec.rbThis PR add documentation on how to correct the problem.