federation updates and related auth bug fixes#300
Merged
schandrika merged 14 commits intoeclipse-volttron:developfrom Mar 25, 2026
Merged
federation updates and related auth bug fixes#300schandrika merged 14 commits intoeclipse-volttron:developfrom
schandrika merged 14 commits intoeclipse-volttron:developfrom
Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR removes federation-related code and fixes authentication service issues. The changes disable federation functionality while updating the authentication interface to support remote platform registration with proper credential handling.
- Removes the FederationBridge interface and related federation service implementation
- Updates authentication credentials classes to support additional kwargs and public key extraction
- Adds remote platform registration method to AuthService
Reviewed Changes
Copilot reviewed 9 out of 9 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| tests/volttron_core_fixtures/fake_messagebus.py | Removes FederationBridge import and create_federation_bridge method |
| src/volttron/types/federation.py | Removes FederationBridge class definition and all federation bridge interfaces |
| src/volttron/types/auth/auth_service.py | Adds register_remote_platform method to AuthService interface |
| src/volttron/types/auth/auth_credentials.py | Updates credential classes to support flexible creation and public key extraction |
| src/volttron/types/init.py | Removes create_federation_bridge method from MessageBus and FederationBridge import |
| src/volttron/services/federation/federation_service.py | Completely removes federation service implementation |
| src/volttron/services/federation/init.py | Removes federation service module initialization |
| src/volttron/server/run_server.py | Removes federation service import logic |
| src/volttron/client/commands/control.py | Refactors address assignment to avoid code duplication |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
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.
Fixes for issues - #293, #297, #298, #299, #311, #312