Merge pull request #6182 from rcordovano/remove-extra-status-string-for-cr-service

Simplified CR search service status reporting
This commit is contained in:
Richard Cordovano 2020-08-17 11:48:23 -04:00 committed by GitHub
commit d6481875d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

View File

@ -12,7 +12,6 @@ CentralRepoDbChoice.PostgreSQL.Text=Custom PostgreSQL
CentralRepoDbChoice.PostgreSQL_Multiuser.Text=PostgreSQL using multi-user settings CentralRepoDbChoice.PostgreSQL_Multiuser.Text=PostgreSQL using multi-user settings
CentralRepoDbChoice.Sqlite.Text=SQLite CentralRepoDbChoice.Sqlite.Text=SQLite
CentralRepoDbManager.connectionErrorMsg.text=Failed to connect to central repository database. CentralRepoDbManager.connectionErrorMsg.text=Failed to connect to central repository database.
CentralRepositoryService.progressMsg.updatingDataSourcesTable=Checking for v1.2 data updates...
CentralRepositoryService.progressMsg.updatingSchema=Updating schema... CentralRepositoryService.progressMsg.updatingSchema=Updating schema...
CentralRepositoryService.serviceName=Central Repository Service CentralRepositoryService.serviceName=Central Repository Service
CorrelationAttributeInstance.invalidName.message=Invalid database table name. Name must start with a lowercase letter and can only contain lowercase letters, numbers, and '_'. CorrelationAttributeInstance.invalidName.message=Invalid database table name. Name must start with a lowercase letter and can only contain lowercase letters, numbers, and '_'.

View File

@ -42,8 +42,8 @@ public class CentralRepositoryService implements AutopsyService {
} }
@NbBundle.Messages({ @NbBundle.Messages({
"CentralRepositoryService.progressMsg.updatingSchema=Updating schema...", "CentralRepositoryService.progressMsg.updatingSchema=Updating schema..."
"CentralRepositoryService.progressMsg.updatingDataSourcesTable=Checking for v1.2 data updates...",}) })
@Override @Override
public void openCaseResources(CaseContext context) throws AutopsyServiceException { public void openCaseResources(CaseContext context) throws AutopsyServiceException {
if (!CentralRepository.isEnabled()) { if (!CentralRepository.isEnabled()) {
@ -58,7 +58,6 @@ public class CentralRepositoryService implements AutopsyService {
return; return;
} }
progress.progress(Bundle.CentralRepositoryService_progressMsg_updatingDataSourcesTable());
dataUpgradeForVersion1dot2(context.getCase()); dataUpgradeForVersion1dot2(context.getCase());
} }