Commit 0b701234 by mushishixian

修复队列名称

parent 512c844d
...@@ -23,9 +23,9 @@ func Import(wg *sync.WaitGroup) { ...@@ -23,9 +23,9 @@ func Import(wg *sync.WaitGroup) {
wg.Done() wg.Done()
}() }()
Exchange = rabbitmq.QueueExchange{ Exchange = rabbitmq.QueueExchange{
"store_customer", "scm_store_customer",
"store_customer", "scm_store_customer",
"store", "scm_store",
"direct", "direct",
configs.RABBITMQDSN, configs.RABBITMQDSN,
} }
......
...@@ -16,9 +16,9 @@ var Exchange rabbitmq.QueueExchange ...@@ -16,9 +16,9 @@ var Exchange rabbitmq.QueueExchange
//导入委托方的信息(excel导入) //导入委托方的信息(excel导入)
func Import(wg *sync.WaitGroup) { func Import(wg *sync.WaitGroup) {
Exchange = rabbitmq.QueueExchange{ Exchange = rabbitmq.QueueExchange{
"store_goods", "scm_store_goods",
"store_goods", "scm_store_goods",
"store", "scm_store",
"direct", "direct",
configs.RABBITMQDSN, configs.RABBITMQDSN,
} }
......
...@@ -25,9 +25,9 @@ func Import(wg *sync.WaitGroup) { ...@@ -25,9 +25,9 @@ func Import(wg *sync.WaitGroup) {
wg.Done() wg.Done()
}() }()
Exchange = rabbitmq.QueueExchange{ Exchange = rabbitmq.QueueExchange{
"store_supplier", "scm_store_supplier",
"store_supplier", "scm_store_supplier",
"store", "scm_store",
"direct", "direct",
configs.RABBITMQDSN, configs.RABBITMQDSN,
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment