码日光
码日光
same issue   I set a very height arrivalRate and it seems run forever and never stop. `hello.yml`: ```yaml config: target: 'http://www.example.com' http: pool: 10 phases: - duration: 60...
Ten minutes later, it's still running, 
@hassy Oh I forgot to mention that. You are right, I use child_proccess spanw to run Artillery. But on a lower arrivalRate (eg: 1000), it could stop normally.
同样的问题……为什么就不能加个color参数让我们想调啥颜色就啥颜色啊 最后直接用小程序自己的button组件了,这i-button做得不好用的话还不如不用
原来如此,但我这边公司项目用到了short类型,我添加后提个pr吧😄
I'm trying to add some repeatable job when server started. eg `refreshAccessToken` `removeOldUsers` etc. Bull is smart enough not to add the same repeatable job if the repeat options are...
@Wyntau 我感觉你对oauth2里面的state参数的作用理解不是很正确?state应该设置成一个随机的值,在回调的时候检查是否与之前设置的state一致,以防止CSRF攻击。这个验证的过程应该由插件自动完成而不是交给用户去设置state。将state写死一个值没有任何作用
And what I need to do is create a new stream after reconnect? ``` socket.on('connect', ()=>{ var stream = ss.createStream() ss(socket).emit('dnode',stream) d.pipe(stream).pipe(d) }) ```
For someone who want to disable warnings: ```javascript import Promise from 'bluebird' Promise.config({ // Disable warnings warnings: false }) ```