Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions pkg/plugin/keystore/errors/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ var (
// StatusKeyNotFound indicates that the specified key was not found in the keystore provider.
StatusKeyNotFound = status.New(
codes.NotFound, "key not found in the keystore provider")

StatusKeyGenericErr = status.New(codes.Unknown, "failed to get key")
)

// NewGrpcErrorWithDetails creates a gRPC error with the given status and metadata mapping.
Expand Down
Loading