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

Commit 60f77a2

Browse files
author
Chris Wiechmann
committed
Fixed an issue causing the index templates not being created.
1 parent 587bdff commit 60f77a2

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+
- Error during setup Get custom properties with message Assignment to constant variable
10+
711
## [2.4.0] 2021-04-26
812
### Fixed
913
- TransactionData not shown, if TransactionElement legs are not in a row [#97](https://github.com/Axway-API-Management-Plus/apigateway-openlogging-elk/issues/97)

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
@@ -268,7 +268,7 @@ async function isIgnoreAPI(params, options) {
268268
}
269269

270270
async function getCustomPropertiesConfig(params, options) {
271-
const { groupId, disableCustomProperties} = params;
271+
let { groupId, disableCustomProperties} = params;
272272
if(!disableCustomProperties) disableCustomProperties = false;
273273
if(disableCustomProperties != false) {
274274
options.logger.debug(`Custom properties support is disabled. Return empty object as custom properties config.`);

0 commit comments

Comments
 (0)