-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(deps): build kerberos in RTLD mode for Linux executables MONGOSH-…
…1628 (#1751) - Update the Kerberos addon to the latest version (2.1.0). - Build the Kerberos addon using RTLD for Linux mongosh executables (i.e. opening the system Kerberos libraries using `dlopen()` to avoid the symbol conflict with OpenSSL 3 on RHEL8). - Update the `.deb` definitions to account for the fact that the Kerberos system libraries are no longer a strict dependency of mongosh. - Include the Kerberos version in the `--build-info` output. - Make sure that if loading the Kerberos addon fails during a connection attempt, a meaningful error message gets passed to the user, instead of the driver’s default one (which swallows all information about the root cause). - As a drive-by, also do that for mongodb-client-encryption; we occasionally receive bug reports about CSFLE/QE not working on homebrew installations, and this may help with that.
- Loading branch information
Showing
24 changed files
with
697 additions
and
61 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,10 +11,16 @@ mkdir -p "$TEST_TMPDIR" | |
cd "$TEST_TMPDIR" | ||
export TEST_TMPDIR="$PWD" | ||
|
||
if [[ -z "$TEST_MONGOSH_EXECUTABLE" ]]; then | ||
export MONGOSH=mongosh | ||
else | ||
export MONGOSH="${MONGOSH_ROOT_DIR}/${TEST_MONGOSH_EXECUTABLE}" | ||
fi | ||
|
||
git clone [email protected]:mongodb-js/devtools-docker-test-envs.git test-envs | ||
cd test-envs | ||
|
||
git checkout f029f9e3a9cc006a6aeb60d941b4f8d87ae4bc95 | ||
git checkout ca4bacd23e6f7ea07618c303b20556e3e4c9c2e6 | ||
|
||
"$CONNECTIVITY_TEST_SOURCE_DIR/ldap.sh" | ||
"$CONNECTIVITY_TEST_SOURCE_DIR/localhost.sh" | ||
|
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
Oops, something went wrong.