[ConnectorsForge] Expanding user authentication possibilities - #53
Open
marek-zuwala wants to merge 13 commits into
Open
[ConnectorsForge] Expanding user authentication possibilities#53marek-zuwala wants to merge 13 commits into
marek-zuwala wants to merge 13 commits into
Conversation
marek-zuwala
force-pushed
the
mzuw_auth_headers
branch
2 times, most recently
from
August 18, 2026 10:10
ca0790e to
33654f5
Compare
marek-zuwala
force-pushed
the
mzuw_auth_headers
branch
from
August 19, 2026 14:57
c43dbbb to
8e6d50e
Compare
Signed-off-by: marek-zuwala <marek.zuwala@ibm.com>
Signed-off-by: marek-zuwala <marek.zuwala@ibm.com>
Signed-off-by: marek-zuwala <marek.zuwala@ibm.com>
Signed-off-by: marek-zuwala <marek.zuwala@ibm.com>
Signed-off-by: marek-zuwala <marek.zuwala@ibm.com>
Signed-off-by: marek-zuwala <marek.zuwala@ibm.com>
…Liberty gRPC transport layer never fires onReady and uses onStreamAllocated instead Signed-off-by: marek-zuwala <marek.zuwala@ibm.com>
Signed-off-by: marek-zuwala <marek.zuwala@ibm.com>
Signed-off-by: marek-zuwala <marek.zuwala@ibm.com>
Signed-off-by: marek-zuwala <marek.zuwala@ibm.com>
Signed-off-by: marek-zuwala <marek.zuwala@ibm.com>
Comment on lines
+164
to
+166
| final String host = (hostProp != null && !hostProp.toString().isBlank()) | ||
| ? hostProp.toString() | ||
| : configUrl.getHost(); |
There was a problem hiding this comment.
Can we have some tests for the host/port override change?
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.
This PR expands the authentication capabilities of connectors created with ConnectorsForge. It also fixes several issues that were discovered during testing.
Advanced authentication DSL
Custom Accept header — new $accept_header DSL field, defaults to application/json.
Field types invisible in CP4D discovery UI (root cause fix)
Liberty gRPC deadlock (CallbackBackpressureStrategy removed)
In the previous PR, while solving the hostname issue, a change was made unnoticed that changed the URL creation logic. The host and port should be taken from the connection properties, not the DSL. This logic has been restored in this PR, without affecting the fix for the previous hostname problem.
Test coverage — 2 new test classes + 12 new tests in existing classes; all 45 tests passing.