Skip to content

Commit 6a7b8f0

Browse files
authored
Zowe Suite v2.18.0
2 parents 61d0634 + f94bfca commit 6a7b8f0

File tree

6 files changed

+9
-6
lines changed

6 files changed

+9
-6
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
All notable changes to the ZSS package will be documented in this file.
44

5+
## `2.18.0`
6+
- Change log level for setting default value of 'httpRequestHeapMaxBlocks' to DEBUG instead of INFO.(#719)
7+
58
## `2.17.0`
69
- Code to configure the SLH block size of the http server through 'httpRequestHeapMaxBlocks' in the yaml.(#701)
710

build/zis.proj.env

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
PROJECT="zis"
2-
VERSION=2.17.0
3-
DYNLINK_PLUGIN_VERSION=10
2+
VERSION=2.18.0
3+
DYNLINK_PLUGIN_VERSION=11
44
DEPS=""

build/zss.proj.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PROJECT="zss"
2-
VERSION=2.17.0
2+
VERSION=2.18.0
33
DEPS="QUICKJS LIBYAML"
44

55
QUICKJS="quickjs"

c/zss.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ static void setHttpRequestHeapMaxBlocks(HttpServer *server, ConfigManager *confi
370370
}
371371
zowelog(NULL, LOG_COMP_ID_MVD_SERVER, ZOWE_LOG_INFO, "httpHeapMaxBlocks should be between %d and %d\n",HTTP_REQUEST_HEAP_MIN_BLOCKS,HTTP_REQUEST_HEAP_MAX_BLOCKS);
372372
} else{
373-
zowelog(NULL, LOG_COMP_ID_MVD_SERVER, ZOWE_LOG_INFO, "fallback to default server settings\n");
373+
zowelog(NULL, LOG_COMP_ID_MVD_SERVER, ZOWE_LOG_DEBUG, "fallback to default server settings\n");
374374
maxBlocks = HTTP_REQUEST_HEAP_DEFAULT_BLOCKS;
375375
}
376376
server->config->httpRequestHeapMaxBlocks = (unsigned int)maxBlocks;

manifest.template.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: zss
33
# Component identifier. This identifier matches artifact path in Zowe Artifactory https://zowe.jfrog.io/.
44
id: org.zowe.zss
55
# Without the v
6-
version: 2.17.0
6+
version: 2.18.0
77
# Component version is defined in gradle.properties for Gradle project
88
# Human readable component name
99
title: Zowe System Services (ZSS)

0 commit comments

Comments
 (0)