You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by al...@apache.org on 2021/01/10 11:36:29 UTC

[dubbo-go-samples] branch master updated: fix: fix dubbo grpc stream bug

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

alexstocks pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-go-samples.git


The following commit(s) were added to refs/heads/master by this push:
     new 145b86c  fix: fix dubbo grpc stream bug
     new 329248b  Merge pull request #32 from LaurenceLiZhixin/fix/grpcStreamBug
145b86c is described below

commit 145b86ce1640f86b56132faf6e835030aaaa8c49
Author: 李志信 <li...@B-C0A1LVDL-2144.local>
AuthorDate: Wed Dec 30 19:45:43 2020 +0800

    fix: fix dubbo grpc stream bug
---
 general/grpc/stream/go-server/app/server.go | 2 --
 1 file changed, 2 deletions(-)

diff --git a/general/grpc/stream/go-server/app/server.go b/general/grpc/stream/go-server/app/server.go
index b4d9875..e3fa2e0 100644
--- a/general/grpc/stream/go-server/app/server.go
+++ b/general/grpc/stream/go-server/app/server.go
@@ -19,7 +19,6 @@ package main
 
 import (
 	"fmt"
-	"github.com/apache/dubbo-go-samples/general/grpc/go-server/pkg"
 	"os"
 	"os/signal"
 	"syscall"
@@ -44,7 +43,6 @@ var (
 
 // need to setup environment variable "CONF_PROVIDER_FILE_PATH" to "conf/server.yml" before run
 func main() {
-	config.SetProviderService(pkg.NewGreeterProvider())
 	config.Load()
 	initSignal()
 }