WithServicePrivileges => ServicePrivileges
This commit is contained in:
		| @@ -133,7 +133,7 @@ func (g *grpcClient) call(ctx context.Context, node *registry.Node, req client.R | |||||||
|  |  | ||||||
| 	// if the caller specifies using service privelages, and the client | 	// if the caller specifies using service privelages, and the client | ||||||
| 	// has auth set, override the authorization header | 	// has auth set, override the authorization header | ||||||
| 	if opts.WithServicePrivileges && g.opts.Auth != nil && g.opts.Auth.Options().Token != nil { | 	if opts.ServicePrivileges && g.opts.Auth != nil && g.opts.Auth.Options().Token != nil { | ||||||
| 		t := g.opts.Auth.Options().Token | 		t := g.opts.Auth.Options().Token | ||||||
| 		header["authorization"] = auth.BearerScheme + t.Token | 		header["authorization"] = auth.BearerScheme + t.Token | ||||||
| 	} | 	} | ||||||
|   | |||||||
| @@ -58,7 +58,7 @@ type CallOptions struct { | |||||||
| 	// Request/Response timeout | 	// Request/Response timeout | ||||||
| 	RequestTimeout time.Duration | 	RequestTimeout time.Duration | ||||||
| 	// Use the services own auth token | 	// Use the services own auth token | ||||||
| 	WithServicePrivileges bool | 	ServicePrivileges bool | ||||||
|  |  | ||||||
| 	// Middleware for low level call func | 	// Middleware for low level call func | ||||||
| 	CallWrappers []CallWrapper | 	CallWrappers []CallWrapper | ||||||
| @@ -307,7 +307,7 @@ func WithDialTimeout(d time.Duration) CallOption { | |||||||
| // authorization header with the services own auth token | // authorization header with the services own auth token | ||||||
| func WithServicePrivileges() CallOption { | func WithServicePrivileges() CallOption { | ||||||
| 	return func(o *CallOptions) { | 	return func(o *CallOptions) { | ||||||
| 		o.WithServicePrivileges = true | 		o.ServicePrivileges = true | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user