-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Asynchronous RPC support #2017
Asynchronous RPC support #2017
Conversation
Conflicts: rpc/src/v1/impls/ethcore.rs rpc/src/v1/impls/personal.rs
Conflicts: rpc/src/v1/impls/ethcore.rs rpc/src/v1/impls/personal.rs
@@ -18,6 +18,7 @@ | |||
|
|||
use hyper::{server, net}; | |||
use std::collections::BTreeMap; | |||
pub use hyper::Control; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why the re-export?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wanted to keep Endpoints
decoupled from hyper
. Maybe it would be better to have custom Control
wrapper instead (perhaps with better name).
Conflicts: Cargo.lock dapps/Cargo.toml dapps/src/apps/fetcher.rs
@debris Please review this |
@@ -16,7 +16,7 @@ git: | |||
matrix: | |||
include: | |||
- rust: stable | |||
env: RUN_TESTS="true" | |||
env: RUN_TESTS="true" TEST_OPTIONS="--no-release" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does this set tests to run in debug mode?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, but only on stable
compiler. Otherwise travis was timeing out (I was trying to re-run couple of times). Suprisingly it's a bit faster when running without release
on stable
.
jsonrpc-core
)Thanks for help: @debris & @rphmeier