Grzegorz Szeliga
Grzegorz Szeliga
The generated openapi scheme for union has changed. Is it possible to restore the previous schema?
Previously the union scheme was generated like this: ``` { "type": "object", "properties": { "type": { "type": "string", "enum": [ "CreateSessionResponseOk", "CreateSessionResponseErrors", "CreateSessionResponseErrorAccess" ] } }, "oneOf": [{ "$ref": "#/components/schemas/CreateSessionResponseOk"...
When you start getting an error: grzegorz@debian:~/Pulpit/fiszki_node$ node test-db.js module.js:356 Module._extensions[extension](this, filename); ^ Error: /home/grzegorz/node_modules/db-mysql/build/Release/mysql_bindings.node: undefined symbol: ev_default_loop_ptr at Module.load (module.js:356:32) at Function.Module._load (module.js:312:12) at Module.require (module.js:364:17) at require (module.js:380:17)...
**rust-analyzer version**: v0.3.1194 **rustc version**: rustc 1.65.0-nightly (78a891d36 2022-09-06) ``` [Error - 1:55:46 PM] Request textDocument/inlayHint failed. Message: Invalid offset Code: -32603 ``` When this message appears, the rust-analyser stops...
Would it be possible to generate an openapi description for "newtype" which contain only one field ?
## Description of the feature It is quite a useful construction to use newtype to specify e.g. ID. Unfortunately, the current implementation of the Object macro does not allow the...
### Describe the bug In the example below, I defined a table with two fields field1 and field2. Then I made an insert with fields field1, field2 and field3 (which...
This callback could behave like this: ``` const exchangeRate = signal(0, // Callback triggered when the signal begins to observe something. () => { const timer = setTimeout(async () =>...
I noticed that native mutexes were used for state synchronisation use std::sync::{Arc, Weak, Mutex, RwLock } Doesn't this affect performance ? Wouldn't it be better to use a mutex from...