wolfgang kuehn
wolfgang kuehn
Yes, this seems to be a bug. So instead of while not queue.empty(): item = queue.get() pprint(item) queue.task_done() use the workaround while True: try: item = queue.get(block=False) except persistqueue.exceptions.Empty: break...
## Workaround: Replace line 1362 ``` this.key = this.path.split('.').pop(); ``` by ``` if ( options.parent ) this.key = this.path.substring(options.parent.path.length+1); else this.key = this.path; ```
Note that according RFC: https://rust-lang.github.io/rfcs/2795-format-args-implicit-identifiers.html: Downstream macros based on format_args! include but are not limited to format!, print!, write!, panic!, and macros in the log crate. Currently, for example `debug!("{foo}")`...
Hello @kmahar, you are right, the non-violating documents get inserted, and I checked that the sitting document does not get updated! I missed that. What threw me off though is...
Hi Janardan, thanks for pointing out that j2js.com was retaken. This repo does not have a home page any more. The only remains (almost) are in the Java package names....
Considerung both #761 and the fact that (at least with the Node driver) the desired result (getting a list of documents *not* inserted) can be achieved with ```` db.runCommand({insert: "own_trades",...
The problem with large event data is in the `_event_complete` method. For every new data chunk it applies a regular expression to **all** buffered data, resulting in a quadratic execution...
The rewrite at https://github.com/andreas-gruenbacher/json-diff works for me so far.
This is currently not possible. As is, the cursor just reverts foreground and background color. Inserting a ⌶ at the cursor position would change the layout of the text, resulting...
In all (?) the examples `tui-textarea` does switch off the terminal cursor with `enable_raw_mode()`. So changing the terminal cursor in these cases will have no effect AFAIK. As to why...