D.B. Schwartz
D.B. Schwartz
I have the same issue and "cargo fmt" works fine, no error when I run from the command line. It used to work until very recently within VSCode too, now...
I have one machine running VS Code 1.37 that works properly, and another running 1.38.1 that does not work, so it looks like it was a regression from the earlier...
Thanks, I hope it is useful to others. Let me know if you need me to do anything else.
The optional serde patch I tried works fine, let me know if you would like a pull request. To use it looks like this, super easy to use: ``` let...
Exactly how I implemented it (as an optional feature) :) I will submit a PR when I have fully tested it.
The PR has been submitted, let me know if you need anything else.
I have confirmed this bug as well. Here is another more complex example with several operators, LIKE is the only one that sometimes puts a 'binary' 'and' between the 'left'...
The documentation is still not fixed here. This is the offending line (692 in `swagger.py` in `register_model`): ``` if name not in self.api.models: ``` The recommended fix above does work...
In testing this more, the stack trace only happens in the debugger (there are other similar issues re: nodejs that are documented for other projects). However, by using logging (without...
This is some sort of timing issue, I am not sure why. I added the following after each iteration: `await this.delay(1);` And it works perfectly on every test. Any ideas?...