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

Commit f082cd1

Browse files
author
Chris Wiechmann
committed
apiProxy variable now a local const
#61
1 parent a97bcd5 commit f082cd1

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## Unreleased
8+
### Fixed
9+
- API-Lookup variable apiProxy is now locally declared as a const [#61](https://github.com/Axway-API-Management-Plus/apigateway-openlogging-elk/issues/61)
10+
711
## [2.0.0] 2021-01-26
812
### Added
913
- Support for API Custom-Properties

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
@@ -485,7 +485,7 @@ async function _getAPIProxy(apiName, groupId, region) {
485485
},
486486
agent: new https.Agent({ rejectUnauthorized: false })
487487
};
488-
apiProxy = await sendRequest(apiManagerConfig.url, options)
488+
const apiProxy = await sendRequest(apiManagerConfig.url, options)
489489
.then(response => {
490490
return response.body;
491491
})

0 commit comments

Comments
 (0)