We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f163926 commit 3c03f88Copy full SHA for 3c03f88
src/commands/omnistudio/migration/migrate.ts
@@ -452,14 +452,11 @@ export default class Migrate extends OmniStudioBaseCommand {
452
let errors: any[] = obj.errors || [];
453
errors = errors.concat(recordResults.errors || []);
454
455
- obj.status = 'Complete';
456
- /*
457
obj.status = recordResults?.skipped
458
? messages.getMessage('labelStatusSkipped')
459
: !recordResults || recordResults.hasErrors
460
? messages.getMessage('labelStatusFailed')
461
: messages.getMessage('labelStatusComplete');
462
- */
463
obj.errors = errors;
464
obj.migratedId = recordResults.id;
465
obj.warnings = recordResults.warnings;
0 commit comments