Lucas Molas

Results 112 comments of Lucas Molas

There seems to be an over-correction (at least for this example) in https://github.com/photonstorm/phaser/blob/70b500cd2881dddd3a816a504c28ad1c692df96f/src/physics/arcade/World.js#L2168-L2173 It becomes visible when the [`TILE_BIAS`](https://photonstorm.github.io/phaser3-docs//Phaser.Physics.Arcade.World.html#TILE_BIAS) is increased and the player is moved way over the tile...

We're hitting the global/fallback dialer https://github.com/libp2p/go-libp2p/blob/7facd81bba8889ee33ac6b4235cb569e652e32eb/p2p/net/reuseport/reuseport.go#L32 which doesn't have the reuse-port settings like the local variable https://github.com/libp2p/go-libp2p/blob/7facd81bba8889ee33ac6b4235cb569e652e32eb/p2p/net/reuseport/reuseport.go#L18-L21 I'm thinking we can either: 1. Retry using another local/ephemeral `Dialer`. 2. Keep...

https://github.com/libp2p/go-libp2p/blob/7facd81bba8889ee33ac6b4235cb569e652e32eb/p2p/net/reuseport/transport_test.go#L165-L180 What I'm seeing locally on my `5.4.0-99-generic` (which may not be the same issue as on the CI server) is the random port assigned to listener B with (in...

@Stebalien Sorry, the `containerd` was just a random example of an open port I'm hitting in my local setting, but this can happen with any open port (in a certain...

I'm trying to add a `WithCancel` context in the 1st dial to make it fail explicitly from the 2nd one after it succeeds, but the cancel error seems to go...

@vyzo Looking at the code related to `TestDialSimultaneousJoin`, is it correct that the line we're trying to trigger is: https://github.com/libp2p/go-libp2p/blob/5eaa48fbab3bf4c669f747437ace19d0311b4c8e/p2p/net/swarm/dial_worker.go#L256-L258

@vyzo Ok, could you point me to 'joined dials' in the code to better understand what are we trying to test, please?