Zoli

Results 9 comments of Zoli

How is the backup works for you inside a docker? whenever I try to execut `wal-e backup-fetch` I get this error: wal_e.exception.UserException: ERROR: MSG: attempting to overwrite a live data...

No, it doesn't work. ``` def createInsecureSslEngine(host: String, port: Int): SSLEngine = { val engine = SSLContext.getDefault.createSSLEngine(host, port) engine.setUseClientMode(true) engine.setSSLParameters({ val params = engine.getSSLParameters params.setEndpointIdentificationAlgorithm("https") params}) engine } ``` Why...

I tried to wire in a custom SSLContext without any success , see here: https://stackoverflow.com/questions/71210533/akka-http-trust-all-certs Also tried this using the deprecated way : https://gist.github.com/iRevive/7d17144284a7a2227487635ec815860d The server I communicate towards has...

Thanks it works! A bit cumbersome to setup though..

+1 for the issue Without this copying is totally useless.

still an issue....

This seems a serious issue. Because of lack of proper documentation and/or built-in solution I was forced to do some hand-made hack like: modifiying the image version then stepping into...

Unfortunately the countdownlatch solution won't work in some environments, because it only wait for the last line of the code to be reached but not the method to exit. example:...