Jason Kohles

Results 25 comments of Jason Kohles
trafficstars

What it's telling you is that the processes currently running are different from the processes that are listed in the dump file (generally `~/.pm2/dump.pm2`). This is why it doesn't restart...

I wound up here looking for the same thing. In my case I wanted to include information from GitHub pull requests in the changelog. Since developers (myself absolutely included) tend...

The big problem that `async_hooks` would allow solving is that domains are a much larger scope. You can use a domain to say "If anything that happens in this code...

For anyone else who ends up here hoping to find a way to make Sentry work with `async_hooks`, I posted a Gist showing how I made this work by using...

Since you mentioned waiting for someone else to chime in about capitalized vs not-capitalized, I just thought I'd add my two cents. `Callback` would actually result in more typing for...

After some more debugging I managed to get a stack trace. Looks like it might actually be a `dmd` issue: ``` RangeError: Maximum call stack size exceeded at Function.keys ()...

I've tracked this down as far as the `descendants` function in `dmd/helpers/ddata.js`. Maybe it's because it's late and I'll figure it out tomorrow after sleeping on it, but at the...

For anybody else struggling with this, here is a gist with some patches you can apply using `patch-package` to kludge your way around the issue... https://gist.github.com/jasonk/8616825033ba94cc77840c8c872497d9

Should also be ignored in a "reference-style link": ``` See the docs about [references-style-links][reflinks]. [reflinks]: https://www.markdownguide.org/basic-syntax/#reference-style-links ```

After fighting with this for a while I finally found what was causing it for me, which looks like it might be the same issue you are having. All of...