amqp-demos icon indicating copy to clipboard operation
amqp-demos copied to clipboard

Results 7 amqp-demos issues
Sort by recently updated
recently updated
newest added

Delete old credential version replacing with static username and passwd as document recommendation; Fix some printing issues for python3 & abandon python2 ; Add comments for issue with parameter-durable for...

https://github.com/AliwareMQ/amqp-demos/blob/a4b5fea10f181d30bd2f8a6fe4bdad93f9b77ba2/amqp-go-utils/demo/Consumer.go#L30

python接口可以获取rabbitmq的用户和密码,但是启动服务后报错如下: [2019-05-09 20:46:45,664: ERROR/MainProcess] consumer: Cannot connect to amqp://**:**@aliyunhost:5672/myVhost: Couldn't find appropriate auth mechanism (can offer: AMQPLAIN; available: PLAIN). Trying to reconnect... 我换成本地的rabbitmq可以成功。请问是什么问题导致的?

发送消息前需要绑定queue和exchange

```js // pre config const config = { accessKeyId: '${accessKeyId}', accessKeySecret: '${accessKeySecret}', instanceId: '${instanceId}', securityToken: '${securityToken}', }; // right config const config = { accessKeyId: '${accessKeyId}', accessKeySecret: '${accessKeySecret}', resourceOwnerId: '${instanceId}',...

进行hash的时候,传参与定义相反。[具体见](https://github.com/AliwareMQ/amqp-demos/blob/master/amqp-go-utils/utils/UserUtils.go#L43) 这应该是认证模块的bug,已经上线不能更改可以理解,但在sdk里面还是要注明一下吧。我在这个坑里踩了一个半小时。