We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
context.Context
Is your feature request related to a problem? Please describe. I want have ability to solve two problems:
Describe the solution you'd like I wan't to set context.Context to every cue evaluation operation.
Something like this: master...joomcode:cue:context-poc
func EvalWithContext(ctx context.Context, value cue.Value, args ast.Expr) cue.Value { return value. WithContext(ctx). FillPath(cue.MakePath(cue.Str("args")), args). LookupPath(cue.MakePath(cue.Str("result"))). Eval() }
The text was updated successfully, but these errors were encountered:
Indeed this is something we should add. See #1104; I'm going to close this for now, to prevent the discussion from being split :)
Sorry, something went wrong.
No branches or pull requests
Is your feature request related to a problem? Please describe.
I want have ability to solve two problems:
Describe the solution you'd like
I wan't to set
context.Context
to every cue evaluation operation.Something like this: master...joomcode:cue:context-poc
The text was updated successfully, but these errors were encountered: