Paul Ishenin

Results 12 comments of Paul Ishenin

Извлечь ключи можно при помощи проекта для NodeJS: https://github.com/garex/nodejs-gost-crypto

This is a bug in node-firebird communication with firebird-server. Instead of call of execute and fetch from it node-firebird must call execute2 without fetch. The same issue has been fixed...

This is critical only if you have Firebird 3 (works fine with 2.5). At the same time you can workaround issue in most of cases by 2 queries: 1) select...

Had the same problem. Fixed by the following code: ```javascript const server = new grpc.Server({ 'grpc-node.max_session_memory': Number.MAX_SAFE_INTEGER }); ```

Also it is not possible to add example values for the /GET parameters

With release 1.6.7 you can do it this way: ```@param {string} page.query.required - Page number - json:{"minimum": 0, "example":2}```

The possible workaround is to create and finish spans at the same function as transaction and pass them inside async functions. E.g.: ```javascript const run = async () => {...

Seems the problem is known. A similar situation is described in #2611

Workaround with `await Promise.resolve()` before startSpan works as well as workaround with passing transaction as childOf option: `const span = apmTransaction?.startSpan(`MyCustomSpan`, { childOf: apmTransaction });` What workaround is preferrable?

await Promise.resolve(); helps to workaround this issue. Just place it before the manual transaction/span creation.