Skip to content

Commit

Permalink
Merge pull request #172 from celonis/Ta-2857-move-to-space-sequantially
Browse files Browse the repository at this point in the history
TA-2857: Move nodes to space sequentially on batch import
  • Loading branch information
LaberionAjvazi authored Feb 12, 2024
2 parents 85728d2 + 7e41f04 commit e66baf1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/services/studio/studio.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@ class StudioService {
if (studioFile) {
const studioManifests: StudioPackageManifest[] = parse(configs.getEntry(BatchExportImportConstants.STUDIO_FILE_NAME).getData().toString());

await Promise.all(studioManifests.map(async manifest => {
for (const manifest of studioManifests) {
await this.movePackageToSpace(manifest);
await this.assignRuntimeVariables(manifest);
}));
}
}
}

Expand Down

0 comments on commit e66baf1

Please sign in to comment.