ee-core 2.9.0 → 2.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/ee/eeApp.js +2 -1
  2. package/package.json +1 -1
package/ee/eeApp.js CHANGED
@@ -153,10 +153,11 @@ class EeApp extends BaseApp {
153
153
  }
154
154
  this._loadingPage(lp);
155
155
 
156
+ const retryTimes = modeInfo.force === true ? 3 : 60;
156
157
  let count = 0;
157
158
  let frontendReady = false;
158
159
  const hc = new HttpClient();
159
- while(!frontendReady && count < 60){
160
+ while(!frontendReady && count < retryTimes){
160
161
  await UtilsHelper.sleep(1 * 1000);
161
162
  try {
162
163
  await hc.request(url, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ee-core",
3
- "version": "2.9.0",
3
+ "version": "2.9.1",
4
4
  "description": "ee core",
5
5
  "main": "index.js",
6
6
  "scripts": {