Alex Potsides
Alex Potsides
@tractorcow you can see how I'm using the plugin [here](https://github.com/ipfs/aegir/blob/master/package.json#L231). Unfortunately there are still [some](https://github.com/octokit/plugin-throttling.js/issues/566) [bugs](https://github.com/octokit/plugin-throttling.js/issues/454) in the throttle plugin itself, though those will be fixed there and not here.
Godspeed @gr2m and massive ❤️ for picking this up again, it's a vital part of so many people's workflows. I've noticed a lot of people are linking to this PR...
> any ideas? Nothing specific but I find [why-is-node-running](https://www.npmjs.com/package/why-is-node-running) very helpful when tracking down active handles that stop processes from exiting.
The [libp2p.stop method](https://github.com/libp2p/js-libp2p/blob/master/packages/libp2p/src/libp2p.ts#L249-L264) just stops each component. Do you have any [logs](https://github.com/libp2p/js-libp2p/blob/master/doc/GETTING_STARTED.md#node) available to see which component is causing the problem?
It's not clear from the logs when shutdown is started ([this line](https://github.com/libp2p/js-libp2p/blob/master/packages/libp2p/src/libp2p.ts#L254) is not present) but it looks like it's still accepting incoming connections so perhaps the tcp socket isn't...
The release notes for `@libp2p/[email protected]` are [here](https://github.com/libp2p/js-libp2p/releases/tag/tcp-v8.0.8) and the only change was https://github.com/libp2p/js-libp2p/pull/2058 The change in that PR was around TCP shutdown and since lodestar is now failing to shut...
Multi-host monitoring is the main reason why guvnor came into being. As you've seen, the [guvnor-web-hosts](https://github.com/tableflip/guvnor/blob/master/guvnor-web-hosts) file is how you configure multiple hosts - the purpose of that file is...
I'm doing some memory analysis of processes under heavy load, I think this might be worth experimenting with - and should be extended to multiaddrs and CIDs too. We keep...
One thing we could do that might be a better middle ground, is to have the `PeerId`/`Multiaddr` objects store strings internally and not `Uint8Array`s - at the moment we store...
@D4nte did you ever manage to create a reproduction for this issue?