xuj

Results 3 comments of xuj
trafficstars

```js Promise.retry = function(fn,max = 3){ let count = 0; return new Promise((resolve,reject)=>{ function handler(){ fn().then((res)=>{ resolve(res) }).catch((err)=>{ count++; if(count >= max){ reject(err) }else{ handler() } }) } handler() })...

@snapre 分组名称在node重启后会变成groupId,如图所示 ![image](https://user-images.githubusercontent.com/22361293/184597093-bbec5676-c732-4f23-befe-22354af8efac.png) ![image](https://user-images.githubusercontent.com/22361293/184597155-6865caf6-3481-4073-8642-57d8f3f187f6.png)

@dermyhughes I ran into the same problem, did you solve it