Results 11 comments of Przemysław Kukulski

Alternative solution: adding a version of PairedConnection that does not reconnect automatically. I could wrap it with a struct overriding send method to react to errors and reconnect with Sentinel...

I've been playing with the library and came up with a design that does not change API in a drastic way, yet allows us to: - change how the connection...

I forgot to add. Here is how you'd use the API: ```rust // direct connection, paired, reconnecting use redis_async::client::{RedisConnectionBuilder, paired::PairedConnectionBuilder}; let client = RedisConnectionBuilder::new("url") .username("hello") .password("world") .paired_reconnecting() .await .unwrap(); let...

> I think I would prefer if the default path maintained backward compatibility, just to reduce the risk of users not noticing the modified behaviour. But I could be persuaded...

Same issue here, only a different console - SCPH-90004. I reproduced it on OPL versions v1.0.0 and v1.2.0-Beta-1826-271338d. **Version 0.9.3 works fine**. The game does not crash no matter how...

@love8587 That's how I run migrations. Here is the exact console output. Notice that ts-node/register is used only when knexfile has `.ts` extension. ``` $ npx knex migrate:latest /home/przemek/DEV/sundae/sundae-collab-demo-api/migrations/20200414144724_recipes.ts:1 import...

``` options.signal.onabort = () => request.abort(); ``` There might be a problem with this implementation. With native fetch, many requests can be cancelled with one abort call. If we override...

@developit @sayjeyhi I submitted PR #137 with alternative implementation. It solves problems I mentioned earlier at a cost of build size. If you decide to merge this (#68) PR without...

Here is example schema with date time columns: ```sql CREATE TABLE IF NOT EXISTS test_z ( `time_column_utc` DateTime('UTC'), `time_column_warsaw` DateTime('Europe/Warsaw') ) ENGINE = MergeTree PARTITION BY time_column_utc ORDER BY time_column_utc;...

I am getting a similar error message. ``` Error: error getting image "sundae_server": unable to find a name and tag match for sundae_server in repotags: no such image Traceback (most...