Skip to content

Commit

Permalink
fix: service capability order (#14)
Browse files Browse the repository at this point in the history
Signed-off-by: Leonardo Cecchi <[email protected]>
  • Loading branch information
leonardoce authored Jan 22, 2024
1 parent 60e6b0f commit bc73ed3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions proto/identity.proto
Original file line number Diff line number Diff line change
Expand Up @@ -73,19 +73,19 @@ message PluginCapability {
enum Type {
TYPE_UNSPECIFIED = 0;

// TYPE_WAL_SERVICE indicates that the Plugin provides RPCs for
// the WAL service. Plugins SHOULD provide this capability.
// The presence of this capability determines whether the CO will
// attempt to invoke the REQUIRED WALService RPCs, as well
// as specific RPCs as indicated by GetCapabilities.
TYPE_WAL_SERVICE = 1;

// TYPE_OPERATOR_SERVICE indicated that the Plugin provider RPCs
// for the Operator service.
// The presence of this capability determines whether the CO will
// attempt to invoke the REQUIRED Opearator RPCs, as well
// as specific RPCs as indicated by GetCapabilities.
TYPE_OPERATOR_SERVICE = 2;
TYPE_OPERATOR_SERVICE = 1;

// TYPE_WAL_SERVICE indicates that the Plugin provides RPCs for
// the WAL service. Plugins SHOULD provide this capability.
// The presence of this capability determines whether the CO will
// attempt to invoke the REQUIRED WALService RPCs, as well
// as specific RPCs as indicated by GetCapabilities.
TYPE_WAL_SERVICE = 2;
}
Type type = 1;
}
Expand Down

0 comments on commit bc73ed3

Please sign in to comment.