Ilya
Ilya
Hey @miwroblewski thank you for your contribution and sorry for the very late reply - I haven't been looking after the project for a while. Honestly, the change is looking...
@karayv if you're asking how we make sure that a process is killed once the Java process has exited, there is a [shutdown hook](https://github.com/flapdoodle-oss/de.flapdoodle.embed.process/blob/master/src/main/java/de/flapdoodle/embed/process/runtime/AbstractProcess.java#L110), registered in embed-process library. However, in...
@vietj thanks for sharing. Yes I think it could be easily built-in into the library. Would you mind to send a PR for this?
@singalshashank Thank you. Please indicate the version of Ubuntu, you are using on CI machine.
@singalshashank sorry, I was busy last two weeks. I actually could not reproduce this. You're not running remote CI as a root, right? Can you try to run Postgres within...
@trak17 Your problem is a very rare and it is hard to reproduce and inspect the reasons. When you launch Postgres many times sequentially on single system, it (probably) caches...
@pboos Thank you for the detailed research! Actually embedded postgres works well on Ubuntu (and this is proved by our CI server, which launches every PR and master build within...
@corydolphin thanks for follow up. All available logging options and the locale configuration are mentioned in current readme. For the newer versions you don't need to configure locale yourself (it...
@sleepphoenix you can use [embedded-services](https://github.com/yandex-qatools/embedded-services) library to ease the configuration. Something like: ``` java PostgresEmbeddedService postgres = new PostgresEmbeddedService("localhost", 5432, "test", "test", "testdb", "/path/to/my/database", true, 10000); postgres.start(); // ... postgres.stop();...
@tdziurko 1. This file is created by `initdb` command, which initializes a new database. postgresql-embedded typically initializes a new temporary database when test starts and then removes it after test...