Jan-Erik Rediger
Jan-Erik Rediger
Your missing the dependencies, especially `socket.io`, so do: ``` npm install ```
No need to move streamie into the node.js folder. But as I said for streamie to work you need the dependencies, so you have to install them. See the [Setup...
Still the same error message? If so, that means you're still missing some dependencies. I'm not sure if the current code works for your own use, but there is a...
No, streamie is just broken for some days now and cramforce is on his honeymoon. But he is working on it according to his latest tweet: https://twitter.com/#!/cramforce/status/99123502308786176
This crate is essentially unmaintained. the redis crate comes with a `r2d2` feature now, which should replace usage of r2d2-redis, see https://github.com/redis-rs/redis-rs/issues/385#issuecomment-702225057 I'll see to mark this repo as unmaintained.
redis-rs [now has an `is_open` check](https://github.com/mitsuhiko/redis-rs/pull/150). We should probably update r2d2-redis to use that now. r2d2 provides `is_valid` and `has_broken` on the `ManageConnection`. There should be rarely a need for...
I don't have merge rights here. @akkomar can you land it?
> These fields were proposed in [docs.google.com/document/d/1oNi-eX_IPIZa8C0h5GZnWTM0WFivZ1hPMgMMX3c3HHs/edit#heading=h.36jrolbv6nko](https://docs.google.com/document/d/1oNi-eX_IPIZa8C0h5GZnWTM0WFivZ1hPMgMMX3c3HHs/edit#heading=h.36jrolbv6nko) It hasn't been fully implemented, i.e. pipeline still parses URI to determine destination dataset so these descriptions are correct. Hm, I see. but...
This seems to happen for me again on build 45875
``` use std::collections::hash_map::RandomState; use std::hash::{BuildHasher, Hasher}; let random_value = RandomState::new().build_hasher().finish() as usize; println!("Random: {}", random_value); ```