From a6671d5098755d1133efe446a2b5f52b471dac22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?tiltwind=28=E6=96=9C=E9=A3=8E=29?= <116183822+tiltwind@users.noreply.github.com> Date: Tue, 6 Dec 2022 16:57:07 +0800 Subject: [PATCH] mark dubbo2 rpc protocol implementation deprecated (#339) Co-authored-by: wongoo --- hessian.go | 4 ++++ request.go | 4 ++++ response.go | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/hessian.go b/hessian.go index 0549984b..231dbeaa 100644 --- a/hessian.go +++ b/hessian.go @@ -15,6 +15,10 @@ * limitations under the License. */ +// This file contains the implementation of +// [dubbo2 rpc protocol](https://dubbo.apache.org/zh/docs/concepts/rpc-protocol/#dubbo2), which is deprecated. +// Use the [implementation](https://github.com/apache/dubbo-go/tree/master/protocol/dubbo/hessian2) in dubbo-go project instead. + package hessian import ( diff --git a/request.go b/request.go index 7a50465b..a6def73e 100644 --- a/request.go +++ b/request.go @@ -15,6 +15,10 @@ * limitations under the License. */ +// This file contains the implementation of +// [dubbo2 rpc protocol](https://dubbo.apache.org/zh/docs/concepts/rpc-protocol/#dubbo2), which is deprecated. +// Use the [implementation](https://github.com/apache/dubbo-go/tree/master/protocol/dubbo/hessian2) in dubbo-go project instead. + package hessian import ( diff --git a/response.go b/response.go index 66235d79..5f905924 100644 --- a/response.go +++ b/response.go @@ -15,6 +15,10 @@ * limitations under the License. */ +// This file contains the implementation of +// [dubbo2 rpc protocol](https://dubbo.apache.org/zh/docs/concepts/rpc-protocol/#dubbo2), which is deprecated. +// Use the [implementation](https://github.com/apache/dubbo-go/tree/master/protocol/dubbo/hessian2) in dubbo-go project instead. + package hessian import (