去掉调试代码

This commit is contained in:
Rosy-zhudan
2019-08-27 09:18:19 +08:00
parent 42618f729a
commit 311f39d5ae

View File

@@ -14,9 +14,6 @@ import (
"git.rosy.net.cn/jx-callback/business/partner"
"git.rosy.net.cn/jx-callback/business/partner/putils"
"git.rosy.net.cn/jx-callback/globals"
_ "net/http/pprof"
"net/http"
)
const (
@@ -202,9 +199,6 @@ func GetFilterStoreList(storeList []*cms.StoreExt, vendorMap, storeIDMap map[int
}
func StartOrEndOpStore(ctx *jxcontext.Context, isStart bool, vendorIDList []int, storeIDList []int, startTime, endTime int16, isAsync, isContinueWhenError bool) (retVal interface{}, err error) {
go func() {
http.ListenAndServe("127.0.0.1:8086", nil)
}()
storeList, err := GetStoreList(ctx)
vendorMap := make(map[int]bool)
for _, vendorID := range vendorIDList {
@@ -265,7 +259,6 @@ func StartOrEndOpStoreEx(ctx *jxcontext.Context, isStart bool, startTime, endTim
if isStart {
AddOrDelExtraStoreOptime(ctx, vendorID, storeID, vendorStoreID, &storeListValue.Store, startOpStoreTime, endOpStoreTime, true)
}
time.Sleep(time.Second * 3)
}
}
}