huangjiajun hace 1 año
padre
commit
c16a640fe1
Se han modificado 2 ficheros con 6 adiciones y 6 borrados
  1. +1
    -1
      app/db/db_new_acquisition_cfg.go
  2. +5
    -5
      consume/zhios_acquisition_condition.go

+ 1
- 1
app/db/db_new_acquisition_cfg.go Ver fichero

@@ -13,7 +13,7 @@ func GetAcquisitionCfg(eg *xorm.Engine, id string, createAt time.Time) *md.Acqui
var get bool
var err error
if utils.StrToInt(id) == 0 {
get, err = eg.Where("start_time<=? and end_time>=? and is_show=?", createAt, createAt, 1).Get(&data)
get, err = eg.Where("start_time<=? and end_time>=? and is_show=?", createAt.Format("2006-01-02 15:04:05"), createAt.Format("2006-01-02 15:04:05"), 1).Get(&data)
} else {
get, err = eg.Where("id=?", id).Get(&data)
}


+ 5
- 5
consume/zhios_acquisition_condition.go Ver fichero

@@ -26,7 +26,7 @@ func ZhiosAcquisitionCondition(queue md.MqQueue) {
//1、将自己绑定到交换机上
ch.Bind(queue.Name, queue.ExchangeName, queue.RoutKey)
//2、取出数据进行消费
ch.Qos(100)
ch.Qos(300)
delivery := ch.Consume(queue.Name, false)

var res amqp.Delivery
@@ -40,7 +40,7 @@ func ZhiosAcquisitionCondition(queue md.MqQueue) {
//_ = res.Reject(false)
fmt.Println(err)
if err == nil {
_ = res.Ack(true)
//_ = res.Ack(true)
} else {
var canalMsg *md.ZhiosAcquisition
var tmpString string
@@ -80,9 +80,9 @@ func handleZhiosAcquisition(msg []byte) error {
if eg == nil {
return nil
}
//if canalMsg.Uid == "" {
// return nil
//}
if canalMsg.Uid == "" {
return nil
}
userInfo, _ := db.UserFindByID(eg, canalMsg.Uid)
if userInfo == nil {
return nil


Cargando…
Cancelar
Guardar