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
{{ message }}
This repository was archived by the owner on Dec 14, 2022. It is now read-only.
@@ -464,7 +464,11 @@ async function _getTopology(requestHeaders) {
464
464
returnresponse.body.result;
465
465
})
466
466
.catch(err=>{
467
-
thrownewError(`Error getting API-Gateway topology from Admin-Node-Manager. Request sent to: '${pluginConfig.apigateway.url}'. Response-Code: ${err.statusCode}`);
467
+
options.logger.error(`Error getting API-Gateway topology from Admin-Node-Manager. Request sent to: '${pluginConfig.apigateway.url}'. Response-Code: ${err.statusCode}`);
468
+
options.logger.error(`This error will cause the application to fail in a future release.`);
469
+
return{};
470
+
// During a grace period it not cause the entire application to fail - Just EMT will not include all services.
471
+
//throw new Error(`Error getting API-Gateway topology from Admin-Node-Manager. Request sent to: '${pluginConfig.apigateway.url}'. Response-Code: ${err.statusCode}`);
0 commit comments