You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2020/12/19 16:18:08 UTC

[skywalking] branch master updated: chore: fix typo gprc -> grpc (#6035)

This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking.git


The following commit(s) were added to refs/heads/master by this push:
     new 7b9cff4  chore: fix typo gprc -> grpc (#6035)
7b9cff4 is described below

commit 7b9cff4b73f216a881e0802bc539f9b21e0e86dc
Author: Zhenxu Ke <ke...@apache.org>
AuthorDate: Sun Dec 20 00:17:46 2020 +0800

    chore: fix typo gprc -> grpc (#6035)
---
 dist-material/release-docs/LICENSE                                    | 2 +-
 .../skywalking/apm/testcase/grpc/controller/CaseController.java       | 4 ++--
 .../skywalking/apm/testcase/grpc/controller/CaseController.java       | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dist-material/release-docs/LICENSE b/dist-material/release-docs/LICENSE
index c390f00..d170a6b 100755
--- a/dist-material/release-docs/LICENSE
+++ b/dist-material/release-docs/LICENSE
@@ -226,7 +226,7 @@ The following components are provided under the Apache License. See project link
 The text of each license is the standard Apache 2.0 license.
 
     raphw (byte-buddy) 1.10.14: http://bytebuddy.net/ , Apache 2.0
-    Google: gprc-java 1.32.1: https://github.com/grpc/grpc-java, Apache 2.0
+    Google: grpc-java 1.32.1: https://github.com/grpc/grpc-java, Apache 2.0
     Google: guava 28.1: https://github.com/google/guava , Apache 2.0
     Google: guice 4.1.0: https://github.com/google/guice , Apache 2.0
     Google: gson 2.8.6: https://github.com/google/gson , Apache 2.0
diff --git a/test/plugin/scenarios/correlation-autotag-scenario/src/main/java/org/apache/skywalking/apm/testcase/grpc/controller/CaseController.java b/test/plugin/scenarios/correlation-autotag-scenario/src/main/java/org/apache/skywalking/apm/testcase/grpc/controller/CaseController.java
index 7c90a6f..e94d37a 100644
--- a/test/plugin/scenarios/correlation-autotag-scenario/src/main/java/org/apache/skywalking/apm/testcase/grpc/controller/CaseController.java
+++ b/test/plugin/scenarios/correlation-autotag-scenario/src/main/java/org/apache/skywalking/apm/testcase/grpc/controller/CaseController.java
@@ -48,7 +48,7 @@ public class CaseController {
 
     private static final String SUCCESS = "Success";
 
-    private final String gprcProviderHost = "127.0.0.1";
+    private final String grpcProviderHost = "127.0.0.1";
     private final int grpcProviderPort = 18080;
     private ManagedChannel channel;
     private GreeterGrpc.GreeterStub greeterStub;
@@ -57,7 +57,7 @@ public class CaseController {
 
     @PostConstruct
     public void up() {
-        channel = ManagedChannelBuilder.forAddress(gprcProviderHost, grpcProviderPort).usePlaintext(true).build();
+        channel = ManagedChannelBuilder.forAddress(grpcProviderHost, grpcProviderPort).usePlaintext(true).build();
         greeterStub = GreeterGrpc.newStub(ClientInterceptors.intercept(channel, new ConsumerInterceptor()));
         greeterBlockingStub = GreeterBlockingGrpc.newBlockingStub(ClientInterceptors.intercept(channel, new ConsumerInterceptor()));
         greeterBlockingErrorStub = GreeterBlockingErrorGrpc.newBlockingStub(ClientInterceptors.intercept(channel, new ConsumerInterceptor()));
diff --git a/test/plugin/scenarios/grpc-scenario/src/main/java/org/apache/skywalking/apm/testcase/grpc/controller/CaseController.java b/test/plugin/scenarios/grpc-scenario/src/main/java/org/apache/skywalking/apm/testcase/grpc/controller/CaseController.java
index f266de4..568ce72 100644
--- a/test/plugin/scenarios/grpc-scenario/src/main/java/org/apache/skywalking/apm/testcase/grpc/controller/CaseController.java
+++ b/test/plugin/scenarios/grpc-scenario/src/main/java/org/apache/skywalking/apm/testcase/grpc/controller/CaseController.java
@@ -43,7 +43,7 @@ public class CaseController {
 
     private static final String SUCCESS = "Success";
 
-    private final String gprcProviderHost = "127.0.0.1";
+    private final String grpcProviderHost = "127.0.0.1";
     private final int grpcProviderPort = 18080;
     private ManagedChannel channel;
     private GreeterGrpc.GreeterStub greeterStub;
@@ -52,7 +52,7 @@ public class CaseController {
 
     @PostConstruct
     public void up() {
-        channel = ManagedChannelBuilder.forAddress(gprcProviderHost, grpcProviderPort).usePlaintext(true).build();
+        channel = ManagedChannelBuilder.forAddress(grpcProviderHost, grpcProviderPort).usePlaintext(true).build();
         greeterStub = GreeterGrpc.newStub(ClientInterceptors.intercept(channel, new ConsumerInterceptor()));
         greeterBlockingStub = GreeterBlockingGrpc.newBlockingStub(ClientInterceptors.intercept(channel, new ConsumerInterceptor()));
         greeterBlockingErrorStub = GreeterBlockingErrorGrpc.newBlockingStub(ClientInterceptors.intercept(channel, new ConsumerInterceptor()));