Index: go/src/infra/gae/libs/gae/memory/taskqueue.go |
diff --git a/go/src/infra/gae/libs/gae/memory/taskqueue.go b/go/src/infra/gae/libs/gae/memory/taskqueue.go |
index b0e04b201d5b73a179d3df15f8cdf7e7538ee835..98225ebea82f0f9b47430ebfe42eb266acbfdca6 100644 |
--- a/go/src/infra/gae/libs/gae/memory/taskqueue.go |
+++ b/go/src/infra/gae/libs/gae/memory/taskqueue.go |
@@ -13,6 +13,7 @@ import ( |
"golang.org/x/net/context" |
"infra/gae/libs/gae" |
+ "infra/gae/libs/gae/dummy" |
) |
/////////////////////////////// public functions /////////////////////////////// |
@@ -27,7 +28,7 @@ func useTQ(c context.Context) context.Context { |
switch x := tqd.(type) { |
case *taskQueueData: |
ret = &taskqueueImpl{ |
- gae.DummyTQ(), |
+ dummy.TQ(), |
x, |
ic, |
curGID(ic).namespace, |
@@ -35,7 +36,7 @@ func useTQ(c context.Context) context.Context { |
case *txnTaskQueueData: |
ret = &taskqueueTxnImpl{ |
- gae.DummyTQ(), |
+ dummy.TQ(), |
x, |
ic, |
curGID(ic).namespace, |