Skip to content
This repository was archived by the owner on Dec 14, 2022. It is now read-only.

Commit 2dff211

Browse files
author
Chris Wiechmann
committed
Solving another potential race condition
1 parent 870453f commit 2dff211

File tree

1 file changed

+1
-1
lines changed
  • apibuilder4elastic/custom_flow_nodes/api-builder-plugin-axway-api-management/src

1 file changed

+1
-1
lines changed

apibuilder4elastic/custom_flow_nodes/api-builder-plugin-axway-api-management/src/actions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ async function lookupAPIDetails(params, options) {
137137
if(!proxies || proxies.length == 0) {
138138
throw new Error(`No APIs found with name: '${apiName}'`);
139139
}
140-
apiProxy = undefined;
140+
var apiProxy = undefined;
141141
for (i = 0; i < proxies.length; i++) {
142142
api = proxies[i];
143143
if(apiPath.startsWith(api.path)) {

0 commit comments

Comments
 (0)