SparrowBrain

Results 12 comments of SparrowBrain

Same issue. Using: * cypress-io/github-action@v4 * Cypress v10.2.0 * npm (v8? GitHub Actions default) Could be related to migrating to v2 of npm lockfile. Had to upgrade chokidar after migration....

Nevermind.. Had to manually update to cypress v10.2.0, since dependabot doesn't run the app. Still a question: why is the error mentioning `cypress.json`? That confused me.

I used to use `TrayRightMouseDown` for right click command.

I've tried looking into the issue, but it's a bit hard to read the code coming from the outside. @FriendsOfGalaxy could we remove the deprecated code marked with TODO's to...

~~So I was debugging the plugin while attached to process that launches it with PyCharm, and noticed that [`user_info_cache.UserInfoCache._check_initialized()`](https://github.com/FriendsOfGalaxy/galaxy-integration-steam/blob/master/src/user_info_cache.py#L18) was getting called after the [`TimeoutError`](https://github.com/FriendsOfGalaxy/galaxy-integration-steam/blob/master/src/plugin.py#L264) in the `authenticate()` method happened.~~...

@FriendsOfGalaxy thanks for the info on how it works. I would definitely love to simplify it - async should allow us to write more sync looking code. I hope I'll...

Created a pull request with a workaround: https://github.com/FriendsOfGalaxy/galaxy-integration-steam/pull/87

So, after digging a bit deeper, this issue occurs when `WebSocketClient` runs [`_ensure_connected()`](https://github.com/FriendsOfGalaxy/galaxy-integration-steam/blob/master/src/protocol/websocket_client.py#L178) and iterates through `servers` from [`ServersCache`.](https://github.com/FriendsOfGalaxy/galaxy-integration-steam/blob/master/src/servers_cache.py) In my case several top entries in the cache were not...

Created a pull request to address the invalid `server_cache`: https://github.com/FriendsOfGalaxy/galaxy-integration-steam/pull/108

Created a pull request to fix this issue: https://github.com/FriendsOfGalaxy/galaxy-integration-steam/pull/104 Please review/test so we could merge it. Additionally, anyone who wants to reconnect to Steam without losing their stats, consider this...