From: jaehoon.hyun Date: Tue, 2 Apr 2019 06:24:15 +0000 (+0900) Subject: configuremgr PushLibPath insterface change X-Git-Tag: submit/tizen/20190409.085658~6^2~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ce33cab0965cd2b0d21c68c374c0dbcf82faabc5;p=platform%2Fcore%2Fsystem%2Fedge-orchestration.git configuremgr PushLibPath insterface change --- diff --git a/src/configuremgr/mock/simulation.go b/src/configuremgr/mock/simulation.go index fb7baab..cbe1ce5 100644 --- a/src/configuremgr/mock/simulation.go +++ b/src/configuremgr/mock/simulation.go @@ -17,8 +17,10 @@ func PushConfPathAppExecuteMock(doc *confdescription.Doc) (err error) { return } -func PushLibPathScoringAppMock(libPath string) (err error) { +func PushLibPathScoringAppMock(libPath string, doc *confdescription.Doc, handlersCh chan<- interface{}) (err error) { configuremgr.ILog.Println("pushLibPathScoringAppMock") configuremgr.ILog.Println(libPath) + configuremgr.ILog.Println(doc) return } +