ipc.Dispatcher.Lookup: signature change for CL 6254
Change-Id: I49064f339a77ee0549899536145620815a0fcee8
diff --git a/services/wsprd/ipc/server/dispatcher.go b/services/wsprd/ipc/server/dispatcher.go
index 11df868..2095379 100644
--- a/services/wsprd/ipc/server/dispatcher.go
+++ b/services/wsprd/ipc/server/dispatcher.go
@@ -67,7 +67,7 @@
}
// Lookup implements dispatcher interface Lookup.
-func (d *dispatcher) Lookup(suffix, method string) (ipc.Invoker, security.Authorizer, error) {
+func (d *dispatcher) Lookup(suffix, method string) (interface{}, security.Authorizer, error) {
flow := d.flowFactory.createFlow()
d.mu.Lock()
ch := make(chan lookupReply, 1)