From 49ff1bef3512f170e5f8c3b4c2522de5c1e7ab76 Mon Sep 17 00:00:00 2001 From: halst Date: Wed, 17 May 2023 13:11:08 +0800 Subject: [PATCH] Update daprdocs/content/en/reference/components-reference/supported-bindings/kitex.md Co-authored-by: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> Signed-off-by: halst --- .../components-reference/supported-bindings/kitex.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/daprdocs/content/en/reference/components-reference/supported-bindings/kitex.md b/daprdocs/content/en/reference/components-reference/supported-bindings/kitex.md index aea7b153c..db1eead9c 100644 --- a/daprdocs/content/en/reference/components-reference/supported-bindings/kitex.md +++ b/daprdocs/content/en/reference/components-reference/supported-bindings/kitex.md @@ -52,7 +52,11 @@ This component supports **output binding** with the following operations: ## Example -When using kitex binding, the client needs to pass in the correct Thrift-encoded binary, and the server needs to be a Thrift Server. The [kitex_output_test](https://github.com/dapr/components-contrib/blob/master/bindings/kitex/kitex_output_test.go) can be used as a reference. +When using Kitex binding: +- The client needs to pass in the correct Thrift-encoded binary +- The server needs to be a Thrift Server. + +The [kitex_output_test](https://github.com/dapr/components-contrib/blob/master/bindings/kitex/kitex_output_test.go) can be used as a reference. For example, the variable `reqData` needs to be encoded by the Thrift protocol before sending, and the returned data needs to be decoded by the Thrift protocol. **Request**