Switch "useGranter" to "granter"
MultiPart: 2/2
Change-Id: I3402ab9b687dd802f611cdcac87523770bb1039a
diff --git a/services/wspr/internal/app/app.go b/services/wspr/internal/app/app.go
index 1496e41..def232b 100644
--- a/services/wspr/internal/app/app.go
+++ b/services/wspr/internal/app/app.go
@@ -225,7 +225,7 @@
callOpts = append(callOpts, options.AllowedServersPolicy(v.Value))
case RpcCallOptionRetryTimeout:
callOpts = append(callOpts, options.RetryTimeout(v.Value))
- case RpcCallOptionUseGranter:
+ case RpcCallOptionGranter:
callOpts = append(callOpts, &jsGranter{c, v.Value})
default:
return nil, fmt.Errorf("Unknown RpcCallOption type %T", v)
diff --git a/services/wspr/internal/app/app.vdl b/services/wspr/internal/app/app.vdl
index f29c6be..0c06832 100644
--- a/services/wspr/internal/app/app.vdl
+++ b/services/wspr/internal/app/app.vdl
@@ -42,7 +42,7 @@
type RpcCallOption union {
AllowedServersPolicy []security.BlessingPattern
RetryTimeout time.Duration
- UseGranter GranterHandle
+ Granter GranterHandle
}
type RpcResponse struct {
diff --git a/services/wspr/internal/app/app.vdl.go b/services/wspr/internal/app/app.vdl.go
index 8c12344..bb46e83 100644
--- a/services/wspr/internal/app/app.vdl.go
+++ b/services/wspr/internal/app/app.vdl.go
@@ -55,8 +55,8 @@
RpcCallOptionAllowedServersPolicy struct{ Value []security.BlessingPattern }
// RpcCallOptionRetryTimeout represents field RetryTimeout of the RpcCallOption union type.
RpcCallOptionRetryTimeout struct{ Value time.Duration }
- // RpcCallOptionUseGranter represents field UseGranter of the RpcCallOption union type.
- RpcCallOptionUseGranter struct{ Value GranterHandle }
+ // RpcCallOptionGranter represents field Granter of the RpcCallOption union type.
+ RpcCallOptionGranter struct{ Value GranterHandle }
// __RpcCallOptionReflect describes the RpcCallOption union type.
__RpcCallOptionReflect struct {
Name string "v.io/x/ref/services/wspr/internal/app.RpcCallOption"
@@ -64,7 +64,7 @@
Union struct {
AllowedServersPolicy RpcCallOptionAllowedServersPolicy
RetryTimeout RpcCallOptionRetryTimeout
- UseGranter RpcCallOptionUseGranter
+ Granter RpcCallOptionGranter
}
}
)
@@ -79,10 +79,10 @@
func (x RpcCallOptionRetryTimeout) Name() string { return "RetryTimeout" }
func (x RpcCallOptionRetryTimeout) __VDLReflect(__RpcCallOptionReflect) {}
-func (x RpcCallOptionUseGranter) Index() int { return 2 }
-func (x RpcCallOptionUseGranter) Interface() interface{} { return x.Value }
-func (x RpcCallOptionUseGranter) Name() string { return "UseGranter" }
-func (x RpcCallOptionUseGranter) __VDLReflect(__RpcCallOptionReflect) {}
+func (x RpcCallOptionGranter) Index() int { return 2 }
+func (x RpcCallOptionGranter) Interface() interface{} { return x.Value }
+func (x RpcCallOptionGranter) Name() string { return "Granter" }
+func (x RpcCallOptionGranter) __VDLReflect(__RpcCallOptionReflect) {}
type RpcResponse struct {
OutArgs []*vdl.Value