Skip to content

Commit

Permalink
Fixing document migration issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dvince2 committed May 23, 2024
1 parent 7b32a86 commit 641078d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,8 @@ void migrateFromEsToPg(final ElasticsearchService elasticService) throws IOExcep
new MigrationConfig<>(codeService, elasticConfig.getCodeIndex()),
new MigrationConfig<>(datasetService, elasticConfig.getDatasetIndex()),
new MigrationConfig<>(artifactService, elasticConfig.getArtifactIndex()),
new MigrationConfig<>(documentService, elasticConfig.getDatasetIndex()));
new MigrationConfig<>(documentService, elasticConfig.getDocumentIndex()));

// TODO: Write a script to properly sync the old ProjectAsset to the new PG data
}

Expand Down

0 comments on commit 641078d

Please sign in to comment.