-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[KS-370] Add ConfigForCapability to CapabilitiesRegistry (#640)
* [KS-370] Add ConfigForCapability to CapabilityRegistry * Address feedback: use durationpb rather than uint32 * Rename ExecuteConfig -> DefaultConfig * Add IsLocal to capabilityInfo * Add IsLocal to CapabilityInfo * Rename GetLocalNode -> LocalNode * Fix MustNewCapabilityInfo * Pass through IsLocal to GRPC call
- Loading branch information
1 parent
17a92dc
commit e407ecd
Showing
15 changed files
with
1,132 additions
and
382 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
//go:generate protoc --go_out=../../ --go_opt=paths=source_relative --go-grpc_out=../../ --go-grpc_opt=paths=source_relative --proto_path=../../ capabilities/pb/capabilities.proto values/pb/values.proto | ||
//go:generate protoc --go_out=../../ --go_opt=paths=source_relative --go-grpc_out=../../ --go-grpc_opt=paths=source_relative --proto_path=../../ capabilities/pb/registry.proto values/pb/values.proto | ||
package pb |
Oops, something went wrong.