shuidian

Results 3 issues of shuidian

the RegExp(`\\[${config.tag}\\]\\((http|https://.+)\\)`) can not match url that start with http.such as: 'https://raw.githubusercontent.com/docsifyjs/docsify/develop/README.md' the correct RegExp may be like this :RegExp(`\\[${config.tag}\\]\\((http://.+|https://.+)\\)`)

this is my code: ```javascript const conn = await amqpConnManager.connect([options]) const ch =conn.createChannel() await ch.waitForConnect() ch.checkQueue('test-queue-name') ``` when queue is not exist this may cause connection disconnect. but in amqplib...

Hello, it seems that sequelize.org is deployed on an ipv6 address, which may prevent users who do not support ipv6 from accessing it. Could you consider deploying sequelize.org on an...