From ce33cab0965cd2b0d21c68c374c0dbcf82faabc5 Mon Sep 17 00:00:00 2001 From: "jaehoon.hyun" Date: Tue, 2 Apr 2019 15:24:15 +0900 Subject: [PATCH] configuremgr PushLibPath insterface change --- src/configuremgr/mock/simulation.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 } + -- 2.34.1