From e980cac3dbd12ab3e35b99c965586fb0abda8374 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Kr=C3=B6ner?= <36126706+Crown0815@users.noreply.github.com> Date: Fri, 22 Sep 2023 21:11:10 +0200 Subject: [PATCH] Remove duplicate phrase --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1336a41..4966bc0 100644 --- a/README.md +++ b/README.md @@ -166,7 +166,7 @@ public class DatabaseServerFixture : IDisposable - `postgres` is the default user (super user) to be used for connection - Trust authentication is the default authentication. You can pass any password in connection string which will be ignored by the server. Since our primary motivation is to use the server for unit tests on localhost, this is pretty fine to keep it simple. - If you pass `DbDir` path while creating the server then it will be used as the working directory else it will use the current directory. You will find a folder named `pg_embed` within which the `binaries` and instance folders are created. -- If you would want to clear the whole root working directory prior to start of server(clear the all the folders from prior runs), you can pass you can pass `clearWorkingDirOnStart=true` in the constuctor while creating the server. By default this value is `false`. +- If you would want to clear the whole root working directory prior to start of server(clear the all the folders from prior runs), you can pass `clearWorkingDirOnStart=true` in the constuctor while creating the server. By default this value is `false`. - If you would want to clear the instance directory on stopping the server, you could pass `clearInstanceDirOnStop=true` in the constuctor while creating the server. By default this value is `false`. - If you would want to run a named instance, you can pass a guid value for `instanceId` in the constructor. This will be helpful in scenarios where you would want to rerun the same named instance already setup. In this case, if the named directory exists, system will skip the setup process and start the server. Note that `clearInstanceDirOnStop` and `clearWorkingDirOnStart` should be `false` (this is the default as well). - If you don't pass a `instanceId`, system will create a new instance by running the whole setup process for every server start.