diff --git a/plugin/storage/factory.go b/plugin/storage/factory.go index 4e6de6d29be..433111e349b 100644 --- a/plugin/storage/factory.go +++ b/plugin/storage/factory.go @@ -46,7 +46,6 @@ const ( memoryStorageType = "memory" kafkaStorageType = "kafka" grpcStorageType = "grpc" - grpcPluginDeprecated = "grpc-plugin" badgerStorageType = "badger" blackholeStorageType = "blackhole" diff --git a/plugin/storage/factory_config.go b/plugin/storage/factory_config.go index 1d8a0748d8f..f58af121ca4 100644 --- a/plugin/storage/factory_config.go +++ b/plugin/storage/factory_config.go @@ -66,13 +66,6 @@ func FactoryConfigFromEnvAndCLI(args []string, log io.Writer) FactoryConfig { if spanStorageType == "" { spanStorageType = cassandraStorageType } - if spanStorageType == grpcPluginDeprecated { - fmt.Fprintf(log, - "WARNING: `%s` storage type is deprecated and will be remove from v1.60. Use `%s`.\n\n", - grpcPluginDeprecated, grpcStorageType, - ) - spanStorageType = grpcStorageType - } spanWriterTypes := strings.Split(spanStorageType, ",") if len(spanWriterTypes) > 1 { fmt.Fprintf(log,