Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Perform Database Check only w/ Both Index and Db Specified #2502

Merged
merged 1 commit into from
May 20, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 7 additions & 5 deletions src/EventStore.ClusterNode/ClusterVNodeHostedService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,13 @@ internal class ClusterVNodeHostedService : EventStoreHostedService<ClusterNodeOp
"The given database path starts with a '~'. Event Store does not expand '~'.");
}

string absolutePathIndex = Path.GetFullPath(options.Index);
string absolutePathDb = Path.GetFullPath(options.Db);
if(absolutePathDb.Equals(absolutePathIndex))
{
throw new ApplicationInitializationException($"The given database ({absolutePathDb}) and index ({absolutePathIndex}) paths cannot point to the same directory.");
if (options.Index != null && options.Db != null) {
string absolutePathIndex = Path.GetFullPath(options.Index);
string absolutePathDb = Path.GetFullPath(options.Db);
if (absolutePathDb.Equals(absolutePathIndex)) {
throw new ApplicationInitializationException(
$"The given database ({absolutePathDb}) and index ({absolutePathIndex}) paths cannot point to the same directory.");
}
}

if (options.Log.StartsWith("~")) {
Expand Down