[fix] Migrated links field should be standard (#6387)

Fixing script + ading logs to sync-metadata
This commit is contained in:
Marie
2024-07-24 12:16:14 +02:00
committed by GitHub
parent 001e698bbe
commit 082d55beac
2 changed files with 2 additions and 0 deletions

View File

@ -225,6 +225,7 @@ export class MigrateLinkFieldsToLinksCommand extends CommandRunner {
id: tmpNewLinksField.id,
workspaceId: tmpNewLinksField.workspaceId,
name: `${fieldName}`,
isCustom: false,
});
this.logger.log(

View File

@ -54,6 +54,7 @@ export class SyncWorkspaceMetadataCommand extends CommandRunner {
const errorsDuringSync: string[] = [];
for (const workspaceId of workspaceIds) {
this.logger.log(`Running workspace sync for workspace: ${workspaceId}`);
try {
const issues =
await this.workspaceHealthService.healthCheck(workspaceId);