-
There are a few spots that use logging.exception, passing two arguments, but no format.
This causes the std library logging to fail:
```
File "/usr/local/lib/python3.12/logging/__init__.py", line…
-
I've been really curious about building operations on potentially-fallible synchronous code as well, without necessarily needing to pulling in an async runtime and block on a given function. The conte…
-
When trying to listen for IBus messages on the `"org.freedesktop.IBus.InputContext"` interface, zbus panics because a message is being passed with a sender that isn't a unique name. A sender with some…
-
### Describe the bug
Look at this fn in `crates/transaction-pool/src/lib.rs`:
```rust
async fn add_transaction(
&self,
origin: TransactionOrigin,
transaction: Sel…
-
### Summary
Don't have a stand-alone reproducible example yet, but I have this:
```rust
#[derive(Interface)]
#[graphql(field(
name = "messages",
ty = "Option",
arg(name = "after…
-
The book explains how to write fallible methods and property getters in interfaces at https://dbus2.github.io/zbus/service.html#method-errors.
However, it seems that this is not actually the full p…
-
```rust
use async_std::io;
use async_std::net::{TcpListener, TcpStream};
use async_std::prelude::*;
use async_std::task;
async fn process(stream: TcpStream) -> io::Result {
println!("Accep…
-
The above mentioned function is currently marked `async` but doesn't use `await`:
https://github.com/hickory-dns/hickory-dns/blob/d07455476cfba08a661c09f303af2cfbb8c1a5cc/crates/async-std-resolver/…
-
Jira Link: [DB-14090](https://yugabyte.atlassian.net/browse/DB-14090)
### Description
Core dump found after sqlbanktransfer with PITR test run with nemesis version: 2.25.0.0-b254
- Not determ…
-
Hi,
I'm trying to move from v.1.0+5, but it seems that my use of asynchronous responses will always crash. I know that async is still "in development", but from trying to follow: https://github.co…