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.
logger.error(`Error getting API-Gateway topology from Admin-Node-Manager. Request sent to: '${pluginConfig.apigateway.url}'. Response-Code: ${err.statusCode}`);
511
+
if(region){
512
+
logger.error(`Error getting API-Gateway topology from Admin-Node-Manager based on given region: ${region}. Request sent to: '${anmConfig.url}'. Response-Code: ${err.statusCode}`);
513
+
}else{
514
+
logger.error(`Error getting API-Gateway topology from Admin-Node-Manager. Request sent to: '${anmConfig.url}'. Response-Code: ${err.statusCode}`);
515
+
}
496
516
logger.error(`This error will cause the application to fail in a future release.`);
497
517
return{};
498
518
// During a grace period it not cause the entire application to fail - Just EMT will not include all services.
@@ -593,18 +613,19 @@ async function _getBackendBasePath(apiProxy, operationId) {
593
613
thrownewError('_getBackendBasePath with operationId not yet implemented.');
thrownewError(`Error reading current permissions from API-Gateway Manager. Loginname: ${loginName} does not match to retrieved user: ${result.user}.`);
628
+
thrownewError(`Error reading current permissions from API-Gateway Manager (${anmConfig.url}). Loginname: ${loginName} does not match to retrieved user: ${result.user}.`);
Copy file name to clipboardExpand all lines: apibuilder4elastic/custom_flow_nodes/api-builder-plugin-axway-api-management/src/flow-nodes.yml
+13-1Lines changed: 13 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ flow-nodes:
18
18
type: string
19
19
getApiManagerUser:
20
20
name: Get the API-Manager user?
21
-
description: If set to false, the flow-node does not tries to lookup the user on the API-Manager. Set it to false, when for instance user authorization is disabled as there might be no belonging user configured in the API-Manager.
21
+
description: If set to false, the flow-node does not try to lookup the user on the API-Manager. Set it to false, when for instance user authorization is disabled as there might be no belonging user configured in the API-Manager.
22
22
required: false
23
23
initialType: boolean
24
24
schema:
@@ -30,6 +30,12 @@ flow-nodes:
30
30
required: false
31
31
schema:
32
32
type: string
33
+
region:
34
+
name: Region
35
+
description: 'If the region is set, the corresponding admin node manager is determined based on this region. If no region is set, then the default Admin-Node-Manager is used.'
36
+
required: false
37
+
schema:
38
+
type: string
33
39
outputs:
34
40
next:
35
41
name: Next
@@ -54,6 +60,12 @@ flow-nodes:
54
60
required: true
55
61
schema:
56
62
type: string
63
+
region:
64
+
name: Region
65
+
description: 'If the region is set, the corresponding admin node manager is determined based on this region. If no region is set, then the default Admin-Node-Manager is used.'
0 commit comments