This is an automated email from the ASF dual-hosted git repository.
wongoo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-go-hessian2.git
The following commit(s) were added to refs/heads/master by this push:
new a6671d5 mark dubbo2 rpc protocol implementation deprecated (#339)
a6671d5 is described below
commit a6671d5098755d1133efe446a2b5f52b471dac22
Author: tiltwind(斜风) <[email protected]>
AuthorDate: Tue Dec 6 16:57:07 2022 +0800
mark dubbo2 rpc protocol implementation deprecated (#339)
Co-authored-by: wongoo <[email protected]>
---
hessian.go | 4 ++++
request.go | 4 ++++
response.go | 4 ++++
3 files changed, 12 insertions(+)
diff --git a/hessian.go b/hessian.go
index 0549984..231dbea 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 7a50465..a6def73 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 66235d7..5f90592 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 (