diff options
| author | JP Appel <jeanpierre.appel01@gmail.com> | 2025-07-28 23:58:07 -0400 |
|---|---|---|
| committer | JP Appel <jeanpierre.appel01@gmail.com> | 2025-07-28 23:58:07 -0400 |
| commit | 0c9444f45bf8777b3ef21850d4839dbb8b10aba0 (patch) | |
| tree | 904a79c99958b9e89eb764d2226f10dd3ed42e62 /pkg/shell | |
| parent | 209af758b64d586e1c0aec3ad2eb4b56740aeddf (diff) | |
Remove todo contexts
Diffstat (limited to 'pkg/shell')
| -rw-r--r-- | pkg/shell/interpreter.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/shell/interpreter.go b/pkg/shell/interpreter.go index 02d5aaf..287c28f 100644 --- a/pkg/shell/interpreter.go +++ b/pkg/shell/interpreter.go @@ -1,6 +1,7 @@ package shell import ( + "context" "errors" "fmt" "io" @@ -514,7 +515,7 @@ out: return true, errors.New("Type corruption during compilation, expected query.CompilationArtifact") } - results, err := inter.querier.Execute(artifact) + results, err := inter.querier.Execute(context.Background(), artifact) if err != nil { return false, fmt.Errorf("Error occured while excuting query: %s", err) } |
