Skip to content
Snippets Groups Projects
Commit 88d5cb6c authored by Ashwin's avatar Ashwin
Browse files

Use ProcessTaskOverNetwork in query.go

parent b53a5969
No related branches found
No related tags found
No related merge requests found
......@@ -406,7 +406,7 @@ func ProcessGraph(sg *SubGraph, rch chan error) {
var err error
if len(sg.query) > 0 && sg.Attr != "_root_" {
// This task execution would go over the wire in later versions.
sg.result, err = worker.ProcessTask(sg.query)
sg.result, err = worker.ProcessTaskOverNetwork(sg.query)
if err != nil {
x.Err(glog, err).Error("While processing task.")
rch <- err
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment