@futdevpro/nts-dynamo 1.10.52 → 1.10.53
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.
|
@@ -231,7 +231,7 @@ class DyNTS_App extends singleton_service_1.DyNTS_SingletonService {
|
|
|
231
231
|
globalService;
|
|
232
232
|
_rootServices = [];
|
|
233
233
|
_routingModules = [];
|
|
234
|
-
defaultReadyTimeout =
|
|
234
|
+
defaultReadyTimeout = 30 * fsm_dynamo_1.second;
|
|
235
235
|
defaultErrorUserMsg = `We encountered an unhandled Server Error, ` +
|
|
236
236
|
`\nplease contact the responsible development team.` +
|
|
237
237
|
`\n(Internal Server error)`;
|
package/package.json
CHANGED
|
@@ -270,7 +270,7 @@ export abstract class DyNTS_App extends DyNTS_SingletonService {
|
|
|
270
270
|
|
|
271
271
|
private _routingModules: DyNTS_RoutingModule[] = [];
|
|
272
272
|
|
|
273
|
-
protected readonly defaultReadyTimeout: number =
|
|
273
|
+
protected readonly defaultReadyTimeout: number = 30 * second;
|
|
274
274
|
|
|
275
275
|
override readonly defaultErrorUserMsg =
|
|
276
276
|
`We encountered an unhandled Server Error, ` +
|