I am using rocketmq in the flash application.
But when the application wants to send a message the second time, it meets this exeception
The producer group has been created before, specify another name please.
Here is my code:
`
from rocketmq.client import Producer, Message
import json
import uuid
from config import Config
I am using rocketmq in the flash application. But when the application wants to send a message the second time, it meets this exeception The producer group has been created before, specify another name please.
Here is my code: ` from rocketmq.client import Producer, Message import json import uuid from config import Config
def send_message(message): ''' 发送消息队列 :param message: 消息体,必须是字典或json格式 :return: ''' group = Config.getConfig().MSG_GROUP
group = str(uuid.uuid4())
`
Question: