Skip to content

Commit

Permalink
Fix build break
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Nied <[email protected]>
  • Loading branch information
peternied committed Jun 28, 2024
1 parent b1eff64 commit cbdb405
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@
import com.rfs.common.DocumentReindexer;
import com.rfs.common.FileSystemRepo;
import com.rfs.common.FileSystemSnapshotCreator;
import com.rfs.common.GlobalMetadata;
import com.rfs.common.IndexMetadata;
import com.rfs.common.LuceneDocumentsReader;
import com.rfs.common.OpenSearchClient;
import com.rfs.common.RestClient;
import com.rfs.common.ShardMetadata;
import com.rfs.common.SnapshotRepo;
import com.rfs.common.SnapshotShardUnpacker;
import com.rfs.common.SourceRepo;
import com.rfs.framework.SearchClusterContainer;
import com.rfs.framework.PreloadedSearchClusterContainer;
import com.rfs.models.GlobalMetadata;
import com.rfs.models.IndexMetadata;
import com.rfs.models.ShardMetadata;
import com.rfs.transformers.TransformFunctions;
import com.rfs.transformers.Transformer;
import com.rfs.version_es_7_10.ElasticsearchConstants_ES_7_10;
Expand Down
2 changes: 1 addition & 1 deletion RFS/src/test/java/com/rfs/framework/ClusterOperations.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public void createSnapshotRepository() throws IOException {
final var repositoryJson = "{\n" +
" \"type\": \"fs\",\n" +
" \"settings\": {\n" +
" \"location\": \"/usr/share/elasticsearch/snapshots\",\n" +
" \"location\": \"" + SearchClusterContainer.CLUSTER_SNAPSHOT_DIR + "\",\n" +
" \"compress\": false\n" +
" }\n" +
"}";
Expand Down

0 comments on commit cbdb405

Please sign in to comment.