From bb0b03bbcee76d210a748d469b4b8debc0263656 Mon Sep 17 00:00:00 2001 From: Moritz Seemann Date: Wed, 11 Jan 2017 17:09:27 +0100 Subject: [PATCH] fix: do not check datasource_indexes_path twice In storage_config.cpp the file paths are validated, but datasource_indexes_path got validated twice and datasource_names_path not at all. --- src/storage/storage_config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage/storage_config.cpp b/src/storage/storage_config.cpp index 221c27c9e..a16532080 100644 --- a/src/storage/storage_config.cpp +++ b/src/storage/storage_config.cpp @@ -32,7 +32,7 @@ bool StorageConfig::IsValid() const core_data_path, geometries_path, timestamp_path, - datasource_indexes_path, + datasource_names_path, datasource_indexes_path, names_data_path, properties_path,