Skip to content
This repository has been archived by the owner on Dec 2, 2023. It is now read-only.

Commit

Permalink
(fix): docker ci
Browse files Browse the repository at this point in the history
  • Loading branch information
adwpc committed Nov 8, 2021
1 parent 356ab56 commit f3a3a5b
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion apps/room/server/room_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ func (s *RoomService) UpdatePeer(ctx context.Context, in *room.UpdatePeerRequest
}

// check peer exist
log.Infof("sid=%v uid======%v", sid, uid)
log.Infof("sid=%v uid=v", sid, uid)
key = util.GetRedisPeerKey(sid, uid)
if s.redis.HGet(key, "uid") == "" {
return &room.UpdatePeerReply{
Expand Down
1 change: 0 additions & 1 deletion cmd/islb/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ func main() {

log.Infof("--- starting islb node ---")
node := islb.NewISLB()
log.Infof("islb node====== %+v", node)
if err := node.Start(conf); err != nil {
log.Errorf("islb start error: %v", err)
os.Exit(-1)
Expand Down
1 change: 0 additions & 1 deletion pkg/ion/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ type Node struct {

//NewNode .
func NewNode(nid string) Node {
log.Infof("NewNode nid=======%v", nid)
return Node{
NID: nid,
neighborNodes: make(map[string]discovery.Node),
Expand Down

0 comments on commit f3a3a5b

Please sign in to comment.