kennytm

Results 392 comments of kennytm

The fix PR #4927 has been purged along side all Pulsar code by #7087 back in v6.3. But later the `keyring` dependency is brought back by #9393 since v7.3. So...

In the log we see this is caused by the SourceManager not being closed: ``` [INFO] [processor.go:896] ["processor closing ..."] [namespace=default] [changefeed=A] [INFO] [processor.go:1051] ["processor sub-component is in stopping"] [namespace=default]...

so [`std::iter::from_coroutine`](https://doc.rust-lang.org/std/iter/fn.from_coroutine.html) should be deprecated?

@qiancai No the generated EBNF is still wrong. ![image](https://github.com/user-attachments/assets/0f9c1e5a-7719-41a0-b2d7-36414d93a30f)

At least on macOS and Linux, if you symlink `$TOOLCHAIN/share/man` as `~/.cargo/man`, then `man cargo` and all manpages work properly. The behavior is documented in `/private/etc/man.conf`: ``` # If people...

@kinnison At least this could make `man rustup` work 🤷, and the symlink can be updated when you change the `rustup default` (so it works as long as you don't...

``` [2025/10/27 17:15:15.866 +08:00] [INFO] [ddl_puller.go:129] ["handle ddl job"] [namespace=default] [changefeed=test_ddl_puller] [query="ALTER TABLE t SHARD_ROW_ID_BITS = 7"] [job="ID:89, Type:shard row ID, State:done, SchemaState:public, SchemaID:2, TableID:80, RowCount:0, ArgLen:0, start time: 2025-10-27...

4 tests failed, seems legit. ``` An error occurred while initializing diff: tls: server selected unsupported protocol version 302, please check log info in /tmp/sync_diff_inspector_test/sync_diff_inspector/output/sync_diff.log for full details ```

@ChrisDenton Yes. See https://rust-lang.github.io/rfcs/2795-format-args-implicit-identifiers.html#alternative-solution---interpolation and also the Future Possibilities section of 2795.

I just found out that `format_args!("{var}")` automatically turns all keywords into raw identifiers which leads to rust-lang/rust#115466. So should the 3rd or 4th or 5th assert_eq below work? ```rust #[derive(Debug)]...