Fix RabbitMQ Certificate Connection Bug#500
Open
yarondlugin wants to merge 2043 commits intoONLYOFFICE:developfrom
Open
Fix RabbitMQ Certificate Connection Bug#500yarondlugin wants to merge 2043 commits intoONLYOFFICE:developfrom
yarondlugin wants to merge 2043 commits intoONLYOFFICE:developfrom
Conversation
… IGNORE_ROW_ON_DUPKEY_INDEX, cap 2-way concurrency; Fix bug 76277
…m feature/az-command-options-4 into release/v9.1.0 Reviewed-on: https://git.onlyoffice.com/ONLYOFFICE/server/pulls/52
…IG during config reload to avoid E2BIG
…eleting tables in oracle' (ONLYOFFICE#53) from fix/oracle-removetbl into release/v9.1.0 Reviewed-on: https://git.onlyoffice.com/ONLYOFFICE/server/pulls/53
…OPI X-WOPI-CorrelationId/X-WOPI-SessionId headers;
…present; Always sign browser token for wopi; For bug 75893
…opi-bugs into release/v9.1.0 Reviewed-on: https://git.onlyoffice.com/ONLYOFFICE/server/pulls/54
# Conflicts: # DocService/npm-shrinkwrap.json # DocService/package.json # DocService/sources/routes/config/config.service.js # DocService/sources/routes/config/router.js # DocService/sources/server.js
…admin-panel-bugs-4 into release/v9.1.0 Reviewed-on: https://git.onlyoffice.com/ONLYOFFICE/server/pulls/75
…NLYOFFICE/server into fix/admin-panel-bugs-5
…NLYOFFICE/server into fix/admin-panel-bugs-5
…admin-panel-bugs-5 into release/v9.1.0 Reviewed-on: https://git.onlyoffice.com/ONLYOFFICE/server/pulls/76
…0' (ONLYOFFICE#77) from fix/bug-77490 into release/v9.1.0 Reviewed-on: https://git.onlyoffice.com/ONLYOFFICE/server/pulls/77
…77514' (ONLYOFFICE#78) from fix/bug-77514 into release/v9.1.0 Reviewed-on: https://git.onlyoffice.com/ONLYOFFICE/server/pulls/78
…y provided; Fix bug 77551
…x bug 77546' (ONLYOFFICE#79) from fix/bug-77546 into release/v9.1.0 Reviewed-on: https://git.onlyoffice.com/ONLYOFFICE/server/pulls/79
…est if not explicitly provided; Fix bug 77551' (ONLYOFFICE#80) from fix/bug-77551 into release/v9.1.0 Reviewed-on: https://git.onlyoffice.com/ONLYOFFICE/server/pulls/80
…7558' (ONLYOFFICE#81) from fix/bug-ten-sec into release/v9.1.0 Reviewed-on: https://git.onlyoffice.com/ONLYOFFICE/server/pulls/81
Added external credentials configuration to the socket options when client chooses to connect with certificate and key. This configuration is necessary for connecting only with certificate and key.
|
|
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.
When connecting to RabbitMQ with certificate and key, it is necessary to define the
credentialsobject in theamqp.connectfunction.This object is now conditionally applied when the client configuration contains
cert,key, andca.Without this change, onlyoffice cannot connect to external RabbitMQ clusters that only enable secure connection with certificates.