Skip to content

bugfix: fix the typos in trpc-jave-demo's yaml #82

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@ client: # Client configs
- demoFilter
service:
- name: trpc.TestApp.TestServer.Greeter1 # Service name
interface: com.tencent.trpc.demo.proto.GreeterserviceAPI # Service interface
interface: com.tencent.trpc.demo.proto.GreeterServiceAPI # Service interface
naming_url: ip://127.0.0.1:12321 # Router address
network: tcp # Network type, tcp or udp
- name: trpc.TestApp.TestServer.Greeter2 # Service name
interface: com.tencent.trpc.demo.proto.Greeterservice2API # Service interface
interface: com.tencent.trpc.demo.proto.GreeterService2API # Service interface
naming_url: ip://127.0.0.1:12321 # Router address
network: udp # Network type, tcp or udp
- name: trpc.TestApp.TestServer.Greeter3 # Service name
interface: com.tencent.trpc.demo.proto.GreeterserviceAPI # Service interface
interface: com.tencent.trpc.demo.proto.GreeterServiceAPI # Service interface
naming_url: ip://127.0.0.1:12322 # Router address
protocol: http # Protocol type, default is trpc
- name: trpc.TestApp.TestServer.Greeter4 # Service name
interface: com.tencent.trpc.demo.proto.Greeterservice2API # Service interface
interface: com.tencent.trpc.demo.proto.GreeterService2API # Service interface
naming_url: ip://127.0.0.1:12322 # Router address
protocol: http # Protocol type, default is trpc

Expand Down