Refresh 20 apps in parallel

This commit is contained in:
Johannes Zellner
2020-06-03 23:38:00 +02:00
parent 18ac61e8ab
commit 36d49b8217

View File

@@ -1801,7 +1801,7 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout
this.getApps(function (error, apps) {
if (error) return callback(error);
async.eachSeries(apps, function (app, iteratorCallback) {
async.eachLimit(apps, 20, function (app, iteratorCallback) {
var canManageApp = that._userInfo.isAtLeastAdmin;
if (!canManageApp) {