(ctx context.Context, val string)
| 150 | } |
| 151 | |
| 152 | func SetInstancePoolID(ctx context.Context, val string) context.Context { |
| 153 | return context.WithValue(ctx, instancePoolIDKey, val) |
| 154 | } |
| 155 | |
| 156 | func InstancePoolID(ctx context.Context) string { |
| 157 | elem := ctx.Value(instancePoolIDKey) |
no outgoing calls
no test coverage detected