Skip to content

Commit 4c67f96

Browse files
author
Maksym Savich
committed
MAGETWO-43197: Product's options are not saved after running setup:di:compile
- Web installation competing code generation process workaround
1 parent 5552eb4 commit 4c67f96

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

setup/pub/magento/setup/readiness-check.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,8 +304,10 @@ angular.module('readiness-check', [])
304304
angular.forEach($scope.items, function(item) {
305305
item.show();
306306
});
307+
var $delay = 0;
307308
angular.forEach($scope.items, function(item) {
308-
$scope.query(item);
309+
$timeout( function(){ $scope.query(item); }, $delay * 1000);
310+
$delay++;
309311
});
310312
};
311313

0 commit comments

Comments
 (0)