Skip to content

Commit 348556e

Browse files
committed
- Change log lever for issue #417
1 parent 65529ea commit 348556e

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
# [1.14.3] In progress
88
### Fixed
9+
- APIM CLI to check/skip already removed API (See issue [#417](https://github.com/Axway-API-Management-Plus/apim-cli/issues/417))
910
- Error mapping is not applied when importing "app" (See issue [#437](https://github.com/Axway-API-Management-Plus/apim-cli/issues/437))
1011
- Handling backend changes and removal of organization from api-config json file in one command [#441](https://github.com/Axway-API-Management-Plus/apim-cli/issues/441))
12+
- Handling removing of existing quota in API (See issue [#438](https://github.com/Axway-API-Management-Plus/apim-cli/issues/438))
13+
- Regression in handling removing existing quota in API Manager (See issue [#434](https://github.com/Axway-API-Management-Plus/apim-cli/issues/434))
14+
### Added
15+
- Support APIM November 2023 release (See issue [#444](https://github.com/Axway-API-Management-Plus/apim-cli/issues/444))
16+
- Support Graphql (See issue [#443](https://github.com/Axway-API-Management-Plus/apim-cli/issues/443))
1117

1218
# [1.14.2] 2023-08-29
1319
### Fixed

modules/apim-adapter/src/main/java/com/axway/apim/adapter/apis/APIManagerAPIAdapter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,7 @@ public boolean isBackendApiExists(API api) {
649649
try (CloseableHttpResponse httpResponse = (CloseableHttpResponse) request.execute()) {
650650
int statusCode = httpResponse.getStatusLine().getStatusCode();
651651
if (statusCode != 200) {
652-
LOG.error("Error getting Backend-API Response-Code: {}", statusCode);
652+
LOG.warn("Error getting Backend-API Response-Code: {}", statusCode);
653653
Utils.logPayload(LOG, httpResponse);
654654
return false;
655655
}

0 commit comments

Comments
 (0)