mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-06-14 02:43:36 +00:00
cleanup: remove left-overs of ReplicationServer in csi-common
The ReplicationServer is not used anymore, the functionality has moved to CSI-Addons and the `internal/csi-addons/rbd` package. These last references were not activated anywhere, so can be removed without any impact. See-also: #3314 Signed-off-by: Niels de Vos <ndevos@ibm.com>
This commit is contained in:
committed by
mergify[bot]
parent
9f753889ed
commit
76d9400725
@ -28,8 +28,6 @@ import (
|
||||
"github.com/ceph/ceph-csi/internal/util/log"
|
||||
|
||||
"github.com/container-storage-interface/spec/lib/go/csi"
|
||||
rp "github.com/csi-addons/replication-lib-utils/protosanitizer"
|
||||
"github.com/csi-addons/spec/lib/go/replication"
|
||||
grpc_middleware "github.com/grpc-ecosystem/go-grpc-middleware"
|
||||
grpc_prometheus "github.com/grpc-ecosystem/go-grpc-prometheus"
|
||||
"github.com/kubernetes-csi/csi-lib-utils/protosanitizer"
|
||||
@ -93,22 +91,6 @@ func NewControllerServiceCapability(ctrlCap csi.ControllerServiceCapability_RPC_
|
||||
}
|
||||
}
|
||||
|
||||
// Add replication request names to the list when we implement more API's.
|
||||
func isReplicationRequest(req interface{}) bool {
|
||||
isReplicationRequest := true
|
||||
switch req.(type) {
|
||||
case *replication.EnableVolumeReplicationRequest:
|
||||
case *replication.DisableVolumeReplicationRequest:
|
||||
case *replication.PromoteVolumeRequest:
|
||||
case *replication.DemoteVolumeRequest:
|
||||
case *replication.ResyncVolumeRequest:
|
||||
default:
|
||||
isReplicationRequest = false
|
||||
}
|
||||
|
||||
return isReplicationRequest
|
||||
}
|
||||
|
||||
// NewMiddlewareServerOption creates a new grpc.ServerOption that configures a
|
||||
// common format for log messages and other gRPC related handlers.
|
||||
func NewMiddlewareServerOption(withMetrics bool) grpc.ServerOption {
|
||||
@ -151,19 +133,6 @@ func getReqID(req interface{}) string {
|
||||
|
||||
case *csi.NodeExpandVolumeRequest:
|
||||
reqID = r.VolumeId
|
||||
|
||||
case *replication.EnableVolumeReplicationRequest:
|
||||
reqID = r.VolumeId
|
||||
case *replication.DisableVolumeReplicationRequest:
|
||||
reqID = r.VolumeId
|
||||
|
||||
case *replication.PromoteVolumeRequest:
|
||||
reqID = r.VolumeId
|
||||
case *replication.DemoteVolumeRequest:
|
||||
reqID = r.VolumeId
|
||||
|
||||
case *replication.ResyncVolumeRequest:
|
||||
reqID = r.VolumeId
|
||||
}
|
||||
|
||||
return reqID
|
||||
@ -193,18 +162,8 @@ func logGRPC(
|
||||
handler grpc.UnaryHandler,
|
||||
) (interface{}, error) {
|
||||
log.ExtendedLog(ctx, "GRPC call: %s", info.FullMethod)
|
||||
// TODO: remove the following check for next release
|
||||
// refer to https://github.com/ceph/ceph-csi/issues/3314.
|
||||
if isReplicationRequest(req) {
|
||||
strippedMessage := protosanitizer.StripSecrets(req).String()
|
||||
if !strings.Contains(strippedMessage, "***stripped***") {
|
||||
strippedMessage = rp.StripReplicationSecrets(req).String()
|
||||
}
|
||||
log.TraceLog(ctx, "GRPC request: %s", protosanitizer.StripSecrets(req))
|
||||
|
||||
log.TraceLog(ctx, "GRPC request: %s", strippedMessage)
|
||||
} else {
|
||||
log.TraceLog(ctx, "GRPC request: %s", protosanitizer.StripSecrets(req))
|
||||
}
|
||||
resp, err := handler(ctx, req)
|
||||
if err != nil {
|
||||
klog.Errorf(log.Log(ctx, "GRPC error: %v"), err)
|
||||
|
Reference in New Issue
Block a user