-
I suspect this is an issue with the backend, but I don't know for certain.
-
Currently if you provide an IP address which cannot be connected to
```
RedisStoreActor::from(RedisStore::connect("redis://1.1.1.1")).start()
```
the process still continues on and requests ju…
-
Hi there,
The version of exonum that is contained on crates.io contains multiple severe vulnerabilities. It looks like these vulnerabilities are fixed on github, but no release has been pushed to …
-
does anyone have an example of running both actix and rumqtt?
-
I am migrating my project from actix to coerce and I have a question about how CPU-bound tasks are managed. The example below shows the actix code to perform the fibonacci operation on 3 Arbiters. An …
-
Hi!
I'm trying to use rumqttc in the context of an Actix Web app (and it seems very nice, thanks for that!).
I made a PoC where rumqttc is used from an Actix actor, which holds the client's state …
-
I think I may have tried to get a little crazy for my first project, but I wanted to try and created a table defined thusly, and it's what I have in my `up` diesel migration:
```sql
CREATE EXTENSION…
-
I was using this via the raspcam crate, but it ended up a little tricky to get things to work because parts of this crate can't be shared across threads. Is this a fundamental limitation due to some f…
-
When running a local testnet one of the nodes panicked with error `attempt to divide by zero`, in superblock.rs:533
![image](https://user-images.githubusercontent.com/52961116/94675290-ca6ae180-031…
-
It's currently *very* easy to deadlock two actors that send each other messages. For example:
```rust
#[derive(Actor)]
pub struct Foo {
bar: BarProxy,
}
#[thespian::actor]
impl Foo {
…