You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
logger.warn("No instances to synchronize. Verify deploy instance name filter '${config.deployInstanceName}' and defined instances name (environment-type).")
21
24
} else {
22
-
instances.onEach(callback)
25
+
if (config.deployParallel) {
26
+
logger.info("Synchronizing ${instances.size} instance(s) in parallel mode")
27
+
instances.parallelStream().forEach(callback)
28
+
} else {
29
+
logger.info("Synchronizing ${instances.size} instance(s) in sequential mode")
30
+
instances.onEach(callback)
31
+
}
23
32
}
24
33
}
25
34
@@ -30,7 +39,7 @@ abstract class SyncTask : AemDefaultTask() {
0 commit comments