fix: add SignalR token to header#134
Merged
cristipufu merged 1 commit intomainfrom Jul 22, 2025
Merged
Conversation
d7113db to
70274bc
Compare
There was a problem hiding this comment.
Pull Request Overview
This PR modifies the SignalR client configuration to add the access token directly to the request headers instead of using a token factory function. The change addresses an issue where the SignalR library doesn't automatically include the access token in negotiate calls.
- Removes the
token_factoryfunction andaccess_token_factoryparameter - Adds Authorization header with Bearer token directly to the headers dictionary
| "X-UiPath-Internal-TenantId": self.context.trace_context.tenant_id, # type: ignore | ||
| "X-UiPath-Internal-AccountId": self.context.trace_context.org_id, # type: ignore | ||
| "X-UIPATH-FolderKey": self.context.folder_key, | ||
| "Authorization": f"Bearer {self._uipath._config.secret}", |
There was a problem hiding this comment.
The PR title contains a typo: 'SinglaR' should be 'SignalR'.
c4e6932 to
704b9e6
Compare
704b9e6 to
1db13b1
Compare
cristipufu
approved these changes
Jul 22, 2025
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.
Add the SignalR access token to header because the library does not add it to the negotiate call.