@openziti/ziti-sdk-nodejs 0.10.0 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -202,7 +202,7 @@ jobs:
|
|
|
202
202
|
./node_modules/.bin/node-pre-gyp package unpublish publish
|
|
203
203
|
sleep 5
|
|
204
204
|
if: |
|
|
205
|
-
steps.extract_branch.outputs.branch == 'main'
|
|
205
|
+
steps.extract_branch.outputs.branch == 'main' && !(matrix.config.os == 'ubuntu-18.04' && matrix.config.node == '16' && matrix.architecture == 'x64' && steps.extract_branch.outputs.branch == 'main')
|
|
206
206
|
|
|
207
207
|
- name: Install Binary
|
|
208
208
|
run: |
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openziti/ziti-sdk-nodejs",
|
|
3
3
|
"description": "A NodeJS-based SDK for delivering secure applications over a Ziti Network",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.11.0",
|
|
5
5
|
"main": "./lib/ziti",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build": "npm run build:init; npm run build:c-sdk; npm install --build-from-source --clang=1",
|
package/src/ziti_set_log_level.c
CHANGED
|
@@ -45,7 +45,7 @@ napi_value _ziti_set_log_level(napi_env env, const napi_callback_info info) {
|
|
|
45
45
|
ZITI_NODEJS_LOG(DEBUG, "js_log_level: %lld", js_log_level);
|
|
46
46
|
|
|
47
47
|
ziti_nodejs_debug_level = js_log_level;
|
|
48
|
-
ziti_log_set_level(js_log_level);
|
|
48
|
+
ziti_log_set_level(js_log_level, NULL);
|
|
49
49
|
|
|
50
50
|
status = napi_create_int32(env, 0, &jsRetval);
|
|
51
51
|
if (status != napi_ok) {
|