cloud path modified

This commit is contained in:
sumedh
2024-08-15 12:55:48 +05:30
parent 825471551b
commit 8c40c31078
2 changed files with 2 additions and 2 deletions

View File

@@ -67,7 +67,7 @@ public class GitRepositoryIngestor {
private void ingestRepo(String repo, KSGitInfo ksGitInfo) {
String repoPath = "C:\\Users\\s.shamrao.shinde\\GenAIStorage" +"\\"+ repo + "\\";
String repoPath = "/mnt/apollo_storage/repository" +"\\"+ repo + "\\";
logger.info("Repository path : " + repoPath);
try (Git git = Git.open(new File(repoPath))) {
ksGitInfo.setIngestionStatus("IN PROGRESS");

View File

@@ -10,7 +10,7 @@ public class StorageProperties {
*/
//private String location = ingestionRepositoryBasePath;
private String location = "C:\\WindTre\\Repository";
private String location = "/mnt/apollo_storage/documents";
public String getLocation() {
return location;
}