File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -272,21 +272,21 @@ func (c *Client) LogEvent(event Event) {
272
272
}, & evalContext {Caller : "logEvent" })
273
273
}
274
274
275
- // Override the value of a Feature Gate for the given user
275
+ // Override the value of a Feature Gate for all users
276
276
func (c * Client ) OverrideGate (gate string , val bool ) {
277
277
c .errorBoundary .captureVoid (func (context * evalContext ) {
278
278
c .evaluator .OverrideGate (gate , val )
279
279
}, & evalContext {Caller : "overrideGate" , ConfigName : gate })
280
280
}
281
281
282
- // Override the DynamicConfig value for the given user
282
+ // Override the DynamicConfig value for all users
283
283
func (c * Client ) OverrideConfig (config string , val map [string ]interface {}) {
284
284
c .errorBoundary .captureVoid (func (context * evalContext ) {
285
285
c .evaluator .OverrideConfig (config , val )
286
286
}, & evalContext {Caller : "overrideConfig" , ConfigName : config })
287
287
}
288
288
289
- // Override the Layer value for the given user
289
+ // Override the Layer value for all users
290
290
func (c * Client ) OverrideLayer (layer string , val map [string ]interface {}) {
291
291
c .errorBoundary .captureVoid (func (context * evalContext ) {
292
292
c .evaluator .OverrideLayer (layer , val )
You can’t perform that action at this time.
0 commit comments