Michael P. Jung

Results 214 comments of Michael P. Jung

Not being able to use IPv6 is a real bummer to me as well. I'm seriously considering kicking HASSOS in favor of a custom container installation or setting up my...

The problem I run into is the carrier grade NAT from my provider. Yes, add-ons can still access IPv4 services. It cannot use services which are only exposed via IPv6...

I'm not a aware of a way to set this via the connection string. You could create a `post_create` hook that issues the following SQL for every newly created connection:...

As `deadpool-postgres` is based on `tokio-postgres` this is something that needs to be fixed in the `tokio-postgres` crate. I found the following issue which seams to be exactly what you're...

How about deprecating the `end` property and adding both an `exactActiveClass` and `startActiveClass` instead? That way it would not be a breaking change, but future versions of the library could...

I like the names `exactMatch` and `partialMatch`. ****

I just removed the `runtime` feature replacing it by conditional dependencies instead: ```toml [target.'cfg(not(target_arch = "wasm32"))'.dependencies] tokio-postgres = "0.7.9" [target.'cfg(target_arch = "wasm32")'.dependencies] tokio-postgres = { version = "0.7.9", default-features =...

The execution order is determined by the file name. In my own projects I prefixed all files with a number: ![image](https://user-images.githubusercontent.com/1112569/178009564-f70458d5-cfe6-46df-8479-26d33e2d2566.png) The retry logic you're describing would result in very...

It's true that it's not a `O(n!)` case but rather `O(n^2)` as we just want to run every statement exactly once and can remove it from the queue once it...

I really like this feature, but I wouldn't make it something that happens automatically every time you call `tusker diff`. It should be some kind of `tusker deps` command that...