build(deps): bump google.golang.org/grpc from 1.66.2 to 1.67.0
Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.66.2 to 1.67.0. - [Release notes](https://github.com/grpc/grpc-go/releases) - [Commits](https://github.com/grpc/grpc-go/compare/v1.66.2...v1.67.0) --- updated-dependencies: - dependency-name: google.golang.org/grpc dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
		
							
								
								
									
										6
									
								
								vendor/google.golang.org/grpc/balancer_wrapper.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										6
									
								
								vendor/google.golang.org/grpc/balancer_wrapper.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -192,7 +192,7 @@ func (ccb *ccBalancerWrapper) NewSubConn(addrs []resolver.Address, opts balancer
 | 
			
		||||
	return acbw, nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (ccb *ccBalancerWrapper) RemoveSubConn(sc balancer.SubConn) {
 | 
			
		||||
func (ccb *ccBalancerWrapper) RemoveSubConn(balancer.SubConn) {
 | 
			
		||||
	// The graceful switch balancer will never call this.
 | 
			
		||||
	logger.Errorf("ccb RemoveSubConn(%v) called unexpectedly, sc")
 | 
			
		||||
}
 | 
			
		||||
@@ -342,8 +342,8 @@ func (acbw *acBalancerWrapper) GetOrBuildProducer(pb balancer.ProducerBuilder) (
 | 
			
		||||
	pData := acbw.producers[pb]
 | 
			
		||||
	if pData == nil {
 | 
			
		||||
		// Not found; create a new one and add it to the producers map.
 | 
			
		||||
		p, close := pb.Build(acbw)
 | 
			
		||||
		pData = &refCountedProducer{producer: p, close: close}
 | 
			
		||||
		p, closeFn := pb.Build(acbw)
 | 
			
		||||
		pData = &refCountedProducer{producer: p, close: closeFn}
 | 
			
		||||
		acbw.producers[pb] = pData
 | 
			
		||||
	}
 | 
			
		||||
	// Account for this new reference.
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user